Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(351)

Side by Side Diff: chrome/chrome_tests.gypi

Issue 27722003: Windows-specific implementation of Networking Private API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use GetProcAddress to get WlanGetNetworkBssList function to avoid XP issues. Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 'msvs_disabled_warnings': [ 4267, ], 479 'msvs_disabled_warnings': [ 4267, ],
480 }, { # else: OS != "win" 480 }, { # else: OS != "win"
481 'sources!': [ 481 'sources!': [
482 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc', 482 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc',
483 'browser/ui/views/native_widget_win_interactive_uitest.cc', 483 'browser/ui/views/native_widget_win_interactive_uitest.cc',
484 ], 484 ],
485 }], # OS != "win" 485 }], # OS != "win"
486 ], # conditions 486 ], # conditions
487 }, 487 },
488 { 488 {
489 'target_name': 'wifi_test',
490 'type': 'executable',
491 'dependencies': [
492 'utility',
493 '../base/base.gyp:base',
494 '../components/components.gyp:onc_component',
495 ],
496 'include_dirs': [
497 '..',
498 ],
499 'sources': [
500 'utility/wifi/wifi_test.cc',
501 ],
502 },
503 {
489 'target_name': 'automation_client_lib', 504 'target_name': 'automation_client_lib',
490 'type': 'static_library', 505 'type': 'static_library',
491 'hard_dependency': 1, 506 'hard_dependency': 1,
492 'dependencies': [ 507 'dependencies': [
493 '../base/base.gyp:base', 508 '../base/base.gyp:base',
494 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 509 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
495 '../net/net.gyp:net', 510 '../net/net.gyp:net',
496 '../third_party/zlib/zlib.gyp:minizip', 511 '../third_party/zlib/zlib.gyp:minizip',
497 '../third_party/zlib/zlib.gyp:zlib', 512 '../third_party/zlib/zlib.gyp:zlib',
498 '../ui/events/events.gyp:events', 513 '../ui/events/events.gyp:events',
(...skipping 2687 matching lines...) Expand 10 before | Expand all | Expand 10 after
3186 'utility', 3201 'utility',
3187 ], 3202 ],
3188 'sources': [ 3203 'sources': [
3189 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3204 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3190 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3205 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3191 ], 3206 ],
3192 }] 3207 }]
3193 }], 3208 }],
3194 ], # 'conditions' 3209 ], # 'conditions'
3195 } 3210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698