OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables' : { | 5 'variables' : { |
6 'chromedriver_unittest_sources': [ | 6 'chromedriver_unittest_sources': [ |
7 'test/chromedriver/capabilities_unittest.cc', | 7 'test/chromedriver/capabilities_unittest.cc', |
8 'test/chromedriver/chrome/chrome_finder_unittest.cc', | 8 'test/chromedriver/chrome/chrome_finder_unittest.cc', |
9 'test/chromedriver/chrome/console_logger_unittest.cc', | 9 'test/chromedriver/chrome/console_logger_unittest.cc', |
10 'test/chromedriver/chrome/device_manager_unittest.cc', | 10 'test/chromedriver/chrome/device_manager_unittest.cc', |
(...skipping 2488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2499 'test/data/resource.rc', | 2499 'test/data/resource.rc', |
2500 ], | 2500 ], |
2501 }], | 2501 }], |
2502 ['toolkit_views==1', { | 2502 ['toolkit_views==1', { |
2503 'dependencies': [ | 2503 'dependencies': [ |
2504 '../ui/views/views.gyp:views', | 2504 '../ui/views/views.gyp:views', |
2505 ], | 2505 ], |
2506 }], | 2506 }], |
2507 ], | 2507 ], |
2508 }, | 2508 }, |
2509 { | |
2510 # Executable that contains all the tests to be run on the GPU bots. | |
2511 'target_name': 'gpu_tests', | |
2512 'type': 'executable', | |
2513 'dependencies': [ | |
2514 # Runtime dependencies | |
2515 '../third_party/mesa/mesa.gyp:osmesa', | |
2516 ], | |
2517 'includes': [ | |
2518 'test/gpu/test_support_gpu.gypi' | |
2519 ], | |
2520 'sources': [ | |
2521 'test/gpu/gpu_feature_browsertest.cc', | |
2522 ], | |
2523 }, | |
2524 ], | 2509 ], |
2525 'conditions': [ | 2510 'conditions': [ |
2526 ['OS=="mac"', { | 2511 ['OS=="mac"', { |
2527 'targets': [ | 2512 'targets': [ |
2528 { | 2513 { |
2529 # This is the mac equivalent of the security_tests target below. It | 2514 # This is the mac equivalent of the security_tests target below. It |
2530 # generates a framework bundle which bundles tests to be run in a | 2515 # generates a framework bundle which bundles tests to be run in a |
2531 # renderer process. The test code is built as a framework so it can be | 2516 # renderer process. The test code is built as a framework so it can be |
2532 # run in the context of a renderer without shipping the code to end | 2517 # run in the context of a renderer without shipping the code to end |
2533 # users. | 2518 # users. |
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2931 # We need to build this during compile step, so enabling here. | 2916 # We need to build this during compile step, so enabling here. |
2932 '../content/content.gyp:content_browsertests', | 2917 '../content/content.gyp:content_browsertests', |
2933 '../courgette/courgette.gyp:courgette_unittests', | 2918 '../courgette/courgette.gyp:courgette_unittests', |
2934 '../crypto/crypto.gyp:crypto_unittests', | 2919 '../crypto/crypto.gyp:crypto_unittests', |
2935 '../jingle/jingle.gyp:jingle_unittests', | 2920 '../jingle/jingle.gyp:jingle_unittests', |
2936 '../net/net.gyp:net_perftests', | 2921 '../net/net.gyp:net_perftests', |
2937 '../third_party/WebKit/public/all.gyp:all_blink', | 2922 '../third_party/WebKit/public/all.gyp:all_blink', |
2938 '../url/url.gyp:url_unittests', | 2923 '../url/url.gyp:url_unittests', |
2939 'browser_tests', | 2924 'browser_tests', |
2940 'chromedriver_unittests', | 2925 'chromedriver_unittests', |
2941 'gpu_tests', | |
2942 'performance_ui_tests', | 2926 'performance_ui_tests', |
2943 'pyautolib', | 2927 'pyautolib', |
2944 'sync_integration_tests', | 2928 'sync_integration_tests', |
2945 ]}], | 2929 ]}], |
2946 ['OS=="mac"', { | 2930 ['OS=="mac"', { |
2947 'dependencies': [ | 2931 'dependencies': [ |
2948 # Placeholder; empty for now. | 2932 # Placeholder; empty for now. |
2949 ]}], | 2933 ]}], |
2950 ], # 'conditions' | 2934 ], # 'conditions' |
2951 'actions': [ | 2935 'actions': [ |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3180 'utility', | 3164 'utility', |
3181 ], | 3165 ], |
3182 'sources': [ | 3166 'sources': [ |
3183 'tools/service_discovery_sniffer/service_discovery_sniffer.h', | 3167 'tools/service_discovery_sniffer/service_discovery_sniffer.h', |
3184 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', | 3168 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', |
3185 ], | 3169 ], |
3186 }] | 3170 }] |
3187 }], | 3171 }], |
3188 ], # 'conditions' | 3172 ], # 'conditions' |
3189 } | 3173 } |
OLD | NEW |