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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
476 'msvs_disabled_warnings': [ 4267, ], | 476 'msvs_disabled_warnings': [ 4267, ], |
477 }, { # else: OS != "win" | 477 }, { # else: OS != "win" |
478 'sources!': [ | 478 'sources!': [ |
479 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc', | 479 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc', |
480 'browser/ui/views/native_widget_win_interactive_uitest.cc', | 480 'browser/ui/views/native_widget_win_interactive_uitest.cc', |
481 ], | 481 ], |
482 }], # OS != "win" | 482 }], # OS != "win" |
483 ], # conditions | 483 ], # conditions |
484 }, | 484 }, |
485 { | 485 { |
486 'target_name': 'wifi_test', | |
cbentzel
2013/10/16 12:51:36
Why did you need to introduce a completely new tes
mef
2013/10/17 02:33:25
This is a test utility to manually exercise the Wi
| |
487 'type': 'executable', | |
488 'dependencies': [ | |
489 'utility', | |
490 '../base/base.gyp:base', | |
491 '../components/components.gyp:onc_component', | |
492 ], | |
493 'include_dirs': [ | |
494 '..', | |
495 ], | |
496 'sources': [ | |
497 'utility/wifi/wifi_test.cc', | |
498 ], | |
499 }, | |
500 { | |
486 'target_name': 'automation_client_lib', | 501 'target_name': 'automation_client_lib', |
487 'type': 'static_library', | 502 'type': 'static_library', |
488 'hard_dependency': 1, | 503 'hard_dependency': 1, |
489 'dependencies': [ | 504 'dependencies': [ |
490 '../base/base.gyp:base', | 505 '../base/base.gyp:base', |
491 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', | 506 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', |
492 '../net/net.gyp:net', | 507 '../net/net.gyp:net', |
493 '../third_party/zlib/zlib.gyp:minizip', | 508 '../third_party/zlib/zlib.gyp:minizip', |
494 '../third_party/zlib/zlib.gyp:zlib', | 509 '../third_party/zlib/zlib.gyp:zlib', |
495 '../ui/events/events.gyp:events', | 510 '../ui/events/events.gyp:events', |
(...skipping 2683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3179 'utility', | 3194 'utility', |
3180 ], | 3195 ], |
3181 'sources': [ | 3196 'sources': [ |
3182 'tools/service_discovery_sniffer/service_discovery_sniffer.h', | 3197 'tools/service_discovery_sniffer/service_discovery_sniffer.h', |
3183 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', | 3198 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', |
3184 ], | 3199 ], |
3185 }] | 3200 }] |
3186 }], | 3201 }], |
3187 ], # 'conditions' | 3202 ], # 'conditions' |
3188 } | 3203 } |
OLD | NEW |