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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 115243007: Basic implementation of the Sync C++ fake server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix constant for clang Created 6 years, 11 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
« no previous file with comments | « chrome/browser/sync/test/integration/sync_test.cc ('k') | sync/sync_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2288 matching lines...) Expand 10 before | Expand all | Expand 10 after
2299 'type': 'static_library', 2299 'type': 'static_library',
2300 'dependencies': [ 2300 'dependencies': [
2301 'browser', 2301 'browser',
2302 'chrome', 2302 'chrome',
2303 'test_support_common', 2303 'test_support_common',
2304 '../base/base.gyp:base', 2304 '../base/base.gyp:base',
2305 '../net/net.gyp:net', 2305 '../net/net.gyp:net',
2306 '../skia/skia.gyp:skia', 2306 '../skia/skia.gyp:skia',
2307 '../sync/sync.gyp:sync', 2307 '../sync/sync.gyp:sync',
2308 '../sync/sync.gyp:test_support_sync_testserver', 2308 '../sync/sync.gyp:test_support_sync_testserver',
2309 '../sync/sync.gyp:test_support_sync_fake_server',
2309 '../ui/app_list/app_list.gyp:app_list_test_support', 2310 '../ui/app_list/app_list.gyp:app_list_test_support',
2310 ], 2311 ],
2311 'include_dirs': [ 2312 'include_dirs': [
2312 '..', 2313 '..',
2313 '<(INTERMEDIATE_DIR)', 2314 '<(INTERMEDIATE_DIR)',
2314 '<(protoc_out_dir)', 2315 '<(protoc_out_dir)',
2315 ], 2316 ],
2316 'direct_dependent_settings': { 2317 'direct_dependent_settings': {
2317 'include_dirs': [ 2318 'include_dirs': [
2318 '..', 2319 '..',
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
2421 'test/data/resource.rc', 2422 'test/data/resource.rc',
2422 'browser/sync/test/integration/cross_platform_sync_test.cc', 2423 'browser/sync/test/integration/cross_platform_sync_test.cc',
2423 'browser/sync/test/integration/enable_disable_test.cc', 2424 'browser/sync/test/integration/enable_disable_test.cc',
2424 'browser/sync/test/integration/migration_test.cc', 2425 'browser/sync/test/integration/migration_test.cc',
2425 'browser/sync/test/integration/multiple_client_bookmarks_sync_test.cc', 2426 'browser/sync/test/integration/multiple_client_bookmarks_sync_test.cc',
2426 'browser/sync/test/integration/multiple_client_dictionary_sync_test.cc', 2427 'browser/sync/test/integration/multiple_client_dictionary_sync_test.cc',
2427 'browser/sync/test/integration/multiple_client_passwords_sync_test.cc', 2428 'browser/sync/test/integration/multiple_client_passwords_sync_test.cc',
2428 'browser/sync/test/integration/multiple_client_preferences_sync_test.cc' , 2429 'browser/sync/test/integration/multiple_client_preferences_sync_test.cc' ,
2429 'browser/sync/test/integration/multiple_client_sessions_sync_test.cc', 2430 'browser/sync/test/integration/multiple_client_sessions_sync_test.cc',
2430 'browser/sync/test/integration/multiple_client_typed_urls_sync_test.cc', 2431 'browser/sync/test/integration/multiple_client_typed_urls_sync_test.cc',
2432 'browser/sync/test/integration/passwords_helper.cc',
2433 'browser/sync/test/integration/passwords_helper.h',
2434 'browser/sync/test/integration/preferences_helper.cc',
2435 'browser/sync/test/integration/preferences_helper.h',
2436 'browser/sync/test/integration/prototype_fake_server_test.cc',
2437 'browser/sync/test/integration/search_engines_helper.cc',
2438 'browser/sync/test/integration/search_engines_helper.h',
2439 'browser/sync/test/integration/sessions_helper.cc',
2440 'browser/sync/test/integration/sessions_helper.h',
2431 'browser/sync/test/integration/single_client_app_list_sync_test.cc', 2441 'browser/sync/test/integration/single_client_app_list_sync_test.cc',
2432 'browser/sync/test/integration/single_client_apps_sync_test.cc', 2442 'browser/sync/test/integration/single_client_apps_sync_test.cc',
2433 'browser/sync/test/integration/single_client_bookmarks_sync_test.cc', 2443 'browser/sync/test/integration/single_client_bookmarks_sync_test.cc',
2434 'browser/sync/test/integration/single_client_dictionary_sync_test.cc', 2444 'browser/sync/test/integration/single_client_dictionary_sync_test.cc',
2435 'browser/sync/test/integration/single_client_extensions_sync_test.cc', 2445 'browser/sync/test/integration/single_client_extensions_sync_test.cc',
2436 'browser/sync/test/integration/single_client_managed_user_settings_sync_ test.cc', 2446 'browser/sync/test/integration/single_client_managed_user_settings_sync_ test.cc',
2437 'browser/sync/test/integration/single_client_passwords_sync_test.cc', 2447 'browser/sync/test/integration/single_client_passwords_sync_test.cc',
2438 'browser/sync/test/integration/single_client_preferences_sync_test.cc', 2448 'browser/sync/test/integration/single_client_preferences_sync_test.cc',
2439 'browser/sync/test/integration/single_client_search_engines_sync_test.cc ', 2449 'browser/sync/test/integration/single_client_search_engines_sync_test.cc ',
2440 'browser/sync/test/integration/single_client_sessions_sync_test.cc', 2450 'browser/sync/test/integration/single_client_sessions_sync_test.cc',
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after
3157 'utility', 3167 'utility',
3158 ], 3168 ],
3159 'sources': [ 3169 'sources': [
3160 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3170 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3161 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3171 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3162 ], 3172 ],
3163 }] 3173 }]
3164 }], 3174 }],
3165 ], # 'conditions' 3175 ], # 'conditions'
3166 } 3176 }
OLDNEW
« no previous file with comments | « chrome/browser/sync/test/integration/sync_test.cc ('k') | sync/sync_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698