OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'nacl_win64_target': 0, | 7 'nacl_win64_target': 0, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'gpu_common.gypi', | 10 'gpu_common.gypi', |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 111 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
112 'command_buffer/command_buffer.gyp:gles2_utils', | 112 'command_buffer/command_buffer.gyp:gles2_utils', |
113 'command_buffer_client', | 113 'command_buffer_client', |
114 'gles2_implementation_client_side_arrays_no_check', | 114 'gles2_implementation_client_side_arrays_no_check', |
115 ], | 115 ], |
116 'sources': [ | 116 'sources': [ |
117 '<@(gles2_c_lib_source_files)', | 117 '<@(gles2_c_lib_source_files)', |
118 ], | 118 ], |
119 }, | 119 }, |
120 { | 120 { |
| 121 'target_name': 'angle_unittests', |
| 122 'type': '<(gtest_target_type)', |
| 123 'dependencies': [ |
| 124 '../base/base.gyp:base', |
| 125 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 126 '../testing/gmock.gyp:gmock', |
| 127 '../testing/gtest.gyp:gtest', |
| 128 '../third_party/angle_dx11/src/build_angle.gyp:translator_static', |
| 129 ], |
| 130 'variables': { |
| 131 'ANGLE_DIR': '../third_party/angle_dx11', |
| 132 }, |
| 133 'includes': [ |
| 134 '../third_party/angle_dx11/tests/preprocessor_tests/preprocessor_tests.g
ypi', |
| 135 '../third_party/angle_dx11/tests/compiler_tests/compiler_tests.gypi', |
| 136 ], |
| 137 'include_dirs': [ |
| 138 '..', |
| 139 '../third_party/angle_dx11/include', |
| 140 '../third_party/angle_dx11/src', |
| 141 '../third_party/angle_dx11/src/compiler/preprocessor', |
| 142 '../third_party/angle_dx11/tests', |
| 143 ], |
| 144 'sources': [ |
| 145 'angle_unittest_main.cc', |
| 146 ], |
| 147 }, |
| 148 { |
121 'target_name': 'gpu_unittests', | 149 'target_name': 'gpu_unittests', |
122 'type': '<(gtest_target_type)', | 150 'type': '<(gtest_target_type)', |
123 'dependencies': [ | 151 'dependencies': [ |
124 '../base/base.gyp:base', | 152 '../base/base.gyp:base', |
125 '../base/base.gyp:test_support_base', | 153 '../base/base.gyp:test_support_base', |
126 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 154 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
127 '../testing/gmock.gyp:gmock', | 155 '../testing/gmock.gyp:gmock', |
128 '../testing/gtest.gyp:gtest', | 156 '../testing/gtest.gyp:gtest', |
129 '../third_party/angle_dx11/src/build_angle.gyp:translator', | 157 '../third_party/angle_dx11/src/build_angle.gyp:translator', |
130 '../ui/gl/gl.gyp:gl', | 158 '../ui/gl/gl.gyp:gl', |
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gl_tests<
(SHARED_LIB_SUFFIX)', | 570 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gl_tests<
(SHARED_LIB_SUFFIX)', |
543 }, | 571 }, |
544 'includes': [ | 572 'includes': [ |
545 '../build/apk_test.gypi', | 573 '../build/apk_test.gypi', |
546 ], | 574 ], |
547 }, | 575 }, |
548 ], | 576 ], |
549 }], | 577 }], |
550 ], | 578 ], |
551 } | 579 } |
OLD | NEW |