| 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 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 'includes': | 714 'includes': |
| 715 [ | 715 [ |
| 716 '../third_party/angle/build/common_defines.gypi', | 716 '../third_party/angle/build/common_defines.gypi', |
| 717 '../third_party/angle/tests/angle_end2end_tests.gypi', | 717 '../third_party/angle/tests/angle_end2end_tests.gypi', |
| 718 ], | 718 ], |
| 719 'sources': | 719 'sources': |
| 720 [ | 720 [ |
| 721 'angle_end2end_tests_main.cc', | 721 'angle_end2end_tests_main.cc', |
| 722 ], | 722 ], |
| 723 }, | 723 }, |
| 724 { |
| 725 # TODO(jmadill): port this target to the GN build. |
| 726 'target_name': 'angle_perftests', |
| 727 'type': '<(gtest_target_type)', |
| 728 'dependencies': [ |
| 729 '../base/base.gyp:base', |
| 730 '../base/base.gyp:test_support_base', |
| 731 ], |
| 732 'includes': |
| 733 [ |
| 734 '../third_party/angle/build/common_defines.gypi', |
| 735 '../third_party/angle/src/tests/angle_perftests.gypi', |
| 736 ], |
| 737 'sources': |
| 738 [ |
| 739 'angle_perftests_main.cc', |
| 740 ], |
| 741 }, |
| 724 ], | 742 ], |
| 725 }], | 743 }], |
| 726 ['test_isolation_mode != "noop"', { | 744 ['test_isolation_mode != "noop"', { |
| 727 'targets': [ | 745 'targets': [ |
| 728 { | 746 { |
| 729 'target_name': 'gpu_unittests_run', | 747 'target_name': 'gpu_unittests_run', |
| 730 'type': 'none', | 748 'type': 'none', |
| 731 'dependencies': [ | 749 'dependencies': [ |
| 732 'gpu_unittests', | 750 'gpu_unittests', |
| 733 ], | 751 ], |
| 734 'includes': [ | 752 'includes': [ |
| 735 '../build/isolate.gypi', | 753 '../build/isolate.gypi', |
| 736 ], | 754 ], |
| 737 'sources': [ | 755 'sources': [ |
| 738 'gpu_unittests.isolate', | 756 'gpu_unittests.isolate', |
| 739 ], | 757 ], |
| 740 }, | 758 }, |
| 741 ], | 759 ], |
| 742 }], | 760 }], |
| 743 ], | 761 ], |
| 744 } | 762 } |
| OLD | NEW |