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 2789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2800 # Required for WebRTC PyAuto tests. | 2800 # Required for WebRTC PyAuto tests. |
2801 'target_name': 'webrtc_test_tools', | 2801 'target_name': 'webrtc_test_tools', |
2802 'type': 'none', | 2802 'type': 'none', |
2803 'dependencies': [ | 2803 'dependencies': [ |
2804 'pyautolib', | 2804 'pyautolib', |
2805 '../third_party/libjingle/libjingle.gyp:peerconnection_server', | 2805 '../third_party/libjingle/libjingle.gyp:peerconnection_server', |
2806 '../third_party/webrtc/tools/tools.gyp:frame_analyzer', | 2806 '../third_party/webrtc/tools/tools.gyp:frame_analyzer', |
2807 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter', | 2807 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter', |
2808 ], | 2808 ], |
2809 }, # target 'webrtc_test_tools' | 2809 }, # target 'webrtc_test_tools' |
2810 { | |
2811 # Executable to measure time to load libraries. | |
2812 'target_name': 'load_library_perf_test', | |
M-A Ruel
2014/02/12 02:32:19
I'm generally against the "add at the bottom of th
shadi1
2014/02/12 18:34:06
Yeah, I was not sure if there is any order to foll
| |
2813 'type': '<(gtest_target_type)', | |
2814 'dependencies': [ | |
2815 '../base/base.gyp:test_support_perf', | |
2816 '../testing/gtest.gyp:gtest', | |
2817 '../testing/perf/perf_test.gyp:*', | |
2818 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', | |
M-A Ruel
2014/02/12 02:32:19
Then this target should not even exist on pure ope
ddorwin
2014/02/12 18:12:52
The target exists in an external checkout. There i
| |
2819 ], | |
2820 'sources': [ | |
2821 'browser/load_library_perf_test.cc', | |
2822 ], | |
2823 'include_dirs': [ | |
2824 '..', | |
2825 '<(SHARED_INTERMEDIATE_DIR)', | |
2826 ], | |
2827 }, # target 'load_library_perf_test' | |
2810 ], | 2828 ], |
2811 'conditions': [ | 2829 'conditions': [ |
2812 ['OS=="mac"', { | 2830 ['OS=="mac"', { |
2813 'targets': [ | 2831 'targets': [ |
2814 { | 2832 { |
2815 # This is the mac equivalent of the security_tests target below. It | 2833 # This is the mac equivalent of the security_tests target below. It |
2816 # generates a framework bundle which bundles tests to be run in a | 2834 # generates a framework bundle which bundles tests to be run in a |
2817 # renderer process. The test code is built as a framework so it can be | 2835 # renderer process. The test code is built as a framework so it can be |
2818 # run in the context of a renderer without shipping the code to end | 2836 # run in the context of a renderer without shipping the code to end |
2819 # users. | 2837 # users. |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3209 'utility', | 3227 'utility', |
3210 ], | 3228 ], |
3211 'sources': [ | 3229 'sources': [ |
3212 'tools/service_discovery_sniffer/service_discovery_sniffer.h', | 3230 'tools/service_discovery_sniffer/service_discovery_sniffer.h', |
3213 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', | 3231 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', |
3214 ], | 3232 ], |
3215 }] | 3233 }] |
3216 }], | 3234 }], |
3217 ], # 'conditions' | 3235 ], # 'conditions' |
3218 } | 3236 } |
OLD | NEW |