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 'pyautolib_sources': [ | 6 'pyautolib_sources': [ |
7 'app/chrome_command_ids.h', | 7 'app/chrome_command_ids.h', |
8 'app/chrome_dll_resource.h', | 8 'app/chrome_dll_resource.h', |
9 'common/automation_constants.h', | 9 'common/automation_constants.h', |
10 'common/pref_names.cc', | 10 'common/pref_names.cc', |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
498 'msvs_disabled_warnings': [ 4267, ], | 498 'msvs_disabled_warnings': [ 4267, ], |
499 }, { # else: OS != "win" | 499 }, { # else: OS != "win" |
500 'sources!': [ | 500 'sources!': [ |
501 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc', | 501 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc', |
502 'browser/ui/views/native_widget_win_interactive_uitest.cc', | 502 'browser/ui/views/native_widget_win_interactive_uitest.cc', |
503 ], | 503 ], |
504 }], # OS != "win" | 504 }], # OS != "win" |
505 ], # conditions | 505 ], # conditions |
506 }, | 506 }, |
507 { | 507 { |
| 508 'target_name': 'wifi_test', |
| 509 'type': 'executable', |
| 510 'dependencies': [ |
| 511 'utility', |
| 512 '../base/base.gyp:base', |
| 513 ], |
| 514 'include_dirs': [ |
| 515 '..', |
| 516 ], |
| 517 'sources': [ |
| 518 'utility/wifi/wifi_test.cc', |
| 519 ], |
| 520 }, |
| 521 { |
508 # Third-party support sources for chromedriver_lib. | 522 # Third-party support sources for chromedriver_lib. |
509 'target_name': 'chromedriver_support', | 523 'target_name': 'chromedriver_support', |
510 'type': 'static_library', | 524 'type': 'static_library', |
511 'sources': [ | 525 'sources': [ |
512 '../third_party/mongoose/mongoose.c', | 526 '../third_party/mongoose/mongoose.c', |
513 '../third_party/mongoose/mongoose.h', | 527 '../third_party/mongoose/mongoose.h', |
514 '../third_party/webdriver/atoms.cc', | 528 '../third_party/webdriver/atoms.cc', |
515 '../third_party/webdriver/atoms.h', | 529 '../third_party/webdriver/atoms.h', |
516 ], | 530 ], |
517 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 531 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
(...skipping 2968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3486 'utility', | 3500 'utility', |
3487 ], | 3501 ], |
3488 'sources': [ | 3502 'sources': [ |
3489 'tools/service_discovery_sniffer/service_discovery_sniffer.h', | 3503 'tools/service_discovery_sniffer/service_discovery_sniffer.h', |
3490 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', | 3504 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', |
3491 ], | 3505 ], |
3492 }] | 3506 }] |
3493 }], | 3507 }], |
3494 ], # 'conditions' | 3508 ], # 'conditions' |
3495 } | 3509 } |
OLD | NEW |