Edit

kc3-lang/angle/tests/angle_unittests.gypi

Branch :

  • Show log

    Commit

  • Author : Kenneth Russell
    Date : 2014-12-18 13:55:08
    Hash : 2609bf4c
    Message : Refactored test targets into angle_unittests and angle_end2end_tests. angle_unittests subsumes the previous: angle_compiler_tests angle_preprocessor_tests and will subsume angle_implementation_unit_tests in a follow-on CL. angle_end2end_tests subsumes the previous: angle_tests angle_standalone_tests angle_implementation_unit_tests The bulk of these two targets have been factored into their own .gypi files, so that a different main.cpp can be trivially plugged in for the gtest harness. This refactoring has been tested both in ANGLE standalone builds, and builds within Chromium. BUG=chromium:435726 Change-Id: I231a3c1989c17e188cc469dcf80fe78b052afe78 Reviewed-on: https://chromium-review.googlesource.com/236681 Reviewed-by: Jamie Madill <jmadill@chromium.org> Tested-by: Kenneth Russell <kbr@chromium.org>

  • tests/angle_unittests.gypi
  • # Copyright (c) 2014 The ANGLE Project Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style license that can be
    # found in the LICENSE file.
    
    # This .gypi describes all of the sources and dependencies to build a
    # unified "angle_unittests" target, which contains all of ANGLE's
    # tests that don't require a fully functional ANGLE in order to run
    # (compiler tests, preprocessor tests, etc.). It requires a parent
    # target to include this gypi in an executable target containing a
    # gtest harness in a main.cpp.
    
    {
        'variables':
        {
            # This file list will be shared with the GN build.
            'angle_unittests_sources':
            [
                '<(angle_path)/tests/compiler_tests/API_test.cpp',
                '<(angle_path)/tests/compiler_tests/CollectVariables_test.cpp',
                '<(angle_path)/tests/compiler_tests/DebugShaderPrecision_test.cpp',
                '<(angle_path)/tests/compiler_tests/ExpressionLimit_test.cpp',
                '<(angle_path)/tests/compiler_tests/NV_draw_buffers_test.cpp',
                '<(angle_path)/tests/compiler_tests/ShaderVariable_test.cpp',
                '<(angle_path)/tests/compiler_tests/TypeTracking_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/char_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/comment_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/define_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/error_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/extension_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/identifier_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/if_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/input_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/location_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/MockDiagnostics.h',
                '<(angle_path)/tests/preprocessor_tests/MockDirectiveHandler.h',
                '<(angle_path)/tests/preprocessor_tests/number_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/operator_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/pragma_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/PreprocessorTest.cpp',
                '<(angle_path)/tests/preprocessor_tests/PreprocessorTest.h',
                '<(angle_path)/tests/preprocessor_tests/space_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/token_test.cpp',
                '<(angle_path)/tests/preprocessor_tests/version_test.cpp',
            ],
        },
        'dependencies':
        [
            '<(angle_path)/src/angle.gyp:preprocessor',
            '<(angle_path)/src/angle.gyp:translator_static',
            '<(angle_path)/tests/tests.gyp:angle_test_support',
        ],
        'include_dirs':
        [
            '../include',
            '../src',
            '../src/compiler/preprocessor',
        ],
        'sources':
        [
            '<@(angle_unittests_sources)',
        ],
        'msvs_settings':
        {
            'VCLinkerTool':
            {
                'conditions':
                [
                    ['angle_build_winrt==1',
                    {
                        'AdditionalDependencies':
                        [
                            'runtimeobject.lib',
                        ],
                    }],
                ],
            },
        },
    }