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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 22295002: Base infrastructure for Networking Private API on Windows and Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed compilation error. Created 7 years, 4 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 '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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 'msvs_disabled_warnings': [ 4267, ], 485 'msvs_disabled_warnings': [ 4267, ],
486 }, { # else: OS != "win" 486 }, { # else: OS != "win"
487 'sources!': [ 487 'sources!': [
488 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc', 488 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc',
489 'browser/ui/views/native_widget_win_interactive_uitest.cc', 489 'browser/ui/views/native_widget_win_interactive_uitest.cc',
490 ], 490 ],
491 }], # OS != "win" 491 }], # OS != "win"
492 ], # conditions 492 ], # conditions
493 }, 493 },
494 { 494 {
495 'target_name': 'wifi_test',
496 'type': 'executable',
497 'dependencies': [
498 'utility',
499 '../base/base.gyp:base',
500 ],
501 'include_dirs': [
502 '..',
503 ],
504 'sources': [
505 'utility/wifi/wifi_test.cc',
506 ],
507 },
508 {
495 # Third-party support sources for chromedriver_lib. 509 # Third-party support sources for chromedriver_lib.
496 'target_name': 'chromedriver_support', 510 'target_name': 'chromedriver_support',
497 'type': 'static_library', 511 'type': 'static_library',
498 'sources': [ 512 'sources': [
499 '../third_party/mongoose/mongoose.c', 513 '../third_party/mongoose/mongoose.c',
500 '../third_party/mongoose/mongoose.h', 514 '../third_party/mongoose/mongoose.h',
501 '../third_party/webdriver/atoms.cc', 515 '../third_party/webdriver/atoms.cc',
502 '../third_party/webdriver/atoms.h', 516 '../third_party/webdriver/atoms.h',
503 ], 517 ],
504 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 518 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
(...skipping 2889 matching lines...) Expand 10 before | Expand all | Expand 10 after
3394 'utility', 3408 'utility',
3395 ], 3409 ],
3396 'sources': [ 3410 'sources': [
3397 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3411 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3398 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3412 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3399 ], 3413 ],
3400 }] 3414 }]
3401 }], 3415 }],
3402 ], # 'conditions' 3416 ], # 'conditions'
3403 } 3417 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698