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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 ['OS=="linux" and use_allocator!="none"', { | 274 ['OS=="linux" and use_allocator!="none"', { |
275 'dependencies': [ | 275 'dependencies': [ |
276 '../base/allocator/allocator.gyp:allocator', | 276 '../base/allocator/allocator.gyp:allocator', |
277 ], | 277 ], |
278 }], | 278 }], |
279 ], | 279 ], |
280 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 280 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
281 'msvs_disabled_warnings': [ 4267, ], | 281 'msvs_disabled_warnings': [ 4267, ], |
282 }, | 282 }, |
283 { | 283 { |
| 284 # GN version: //gpu/gpu_perftests |
| 285 'target_name': 'gpu_perftests', |
| 286 'type': '<(gtest_target_type)', |
| 287 'dependencies': [ |
| 288 '../base/base.gyp:base', |
| 289 '../base/base.gyp:test_support_base', |
| 290 '../testing/gtest.gyp:gtest', |
| 291 '../testing/perf/perf_test.gyp:perf_test', |
| 292 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 293 '../ui/gl/gl.gyp:gl', |
| 294 ], |
| 295 'sources': [ |
| 296 'perftests/run_all_tests.cc', |
| 297 'perftests/texture_upload_perftest.cc', |
| 298 ], |
| 299 }, |
| 300 { |
284 # GN version: //gpu:gl_tests | 301 # GN version: //gpu:gl_tests |
285 'target_name': 'gl_tests', | 302 'target_name': 'gl_tests', |
286 'type': '<(gtest_target_type)', | 303 'type': '<(gtest_target_type)', |
287 'dependencies': [ | 304 'dependencies': [ |
288 '../base/base.gyp:base', | 305 '../base/base.gyp:base', |
289 '../base/base.gyp:test_support_base', | 306 '../base/base.gyp:test_support_base', |
290 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 307 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
291 '../testing/gmock.gyp:gmock', | 308 '../testing/gmock.gyp:gmock', |
292 '../testing/gtest.gyp:gtest', | 309 '../testing/gtest.gyp:gtest', |
293 '<(angle_path)/src/angle.gyp:translator', | 310 '<(angle_path)/src/angle.gyp:translator', |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 ], | 685 ], |
669 'sources': | 686 'sources': |
670 [ | 687 [ |
671 'angle_end2end_tests_main.cc', | 688 'angle_end2end_tests_main.cc', |
672 ], | 689 ], |
673 }, | 690 }, |
674 ], | 691 ], |
675 }], | 692 }], |
676 ], | 693 ], |
677 } | 694 } |
OLD | NEW |