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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 515 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
516 'msvs_disabled_warnings': [ 4267, ], | 516 'msvs_disabled_warnings': [ 4267, ], |
517 }, { # else: OS != "win" | 517 }, { # else: OS != "win" |
518 'sources!': [ | 518 'sources!': [ |
519 'browser/ui/views/native_widget_win_interactive_uitest.cc', | 519 'browser/ui/views/native_widget_win_interactive_uitest.cc', |
520 ], | 520 ], |
521 }], # OS != "win" | 521 }], # OS != "win" |
522 ], # conditions | 522 ], # conditions |
523 }, | 523 }, |
524 { | 524 { |
| 525 'target_name': 'wifi_test', |
| 526 'type': 'executable', |
| 527 'dependencies': [ |
| 528 'utility', |
| 529 '../base/base.gyp:base', |
| 530 '../components/components.gyp:onc_component', |
| 531 ], |
| 532 'include_dirs': [ |
| 533 '..', |
| 534 ], |
| 535 'sources': [ |
| 536 'utility/wifi/wifi_test.cc', |
| 537 ], |
| 538 }, |
| 539 { |
525 'target_name': 'automation_client_lib', | 540 'target_name': 'automation_client_lib', |
526 'type': 'static_library', | 541 'type': 'static_library', |
527 'hard_dependency': 1, | 542 'hard_dependency': 1, |
528 'dependencies': [ | 543 'dependencies': [ |
529 '../base/base.gyp:base', | 544 '../base/base.gyp:base', |
530 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 545 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
531 '../net/net.gyp:net', | 546 '../net/net.gyp:net', |
532 '../third_party/zlib/zlib.gyp:minizip', | 547 '../third_party/zlib/zlib.gyp:minizip', |
533 '../third_party/zlib/zlib.gyp:zlib', | 548 '../third_party/zlib/zlib.gyp:zlib', |
534 '../ui/events/events.gyp:events', | 549 '../ui/events/events.gyp:events', |
(...skipping 2699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3234 'utility', | 3249 'utility', |
3235 ], | 3250 ], |
3236 'sources': [ | 3251 'sources': [ |
3237 'tools/service_discovery_sniffer/service_discovery_sniffer.h', | 3252 'tools/service_discovery_sniffer/service_discovery_sniffer.h', |
3238 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', | 3253 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', |
3239 ], | 3254 ], |
3240 }] | 3255 }] |
3241 }], | 3256 }], |
3242 ], # 'conditions' | 3257 ], # 'conditions' |
3243 } | 3258 } |
OLD | NEW |