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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 16272006: In-browser DNS-based service discovery system (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mdns_implementation
Patch Set: Created 7 years, 6 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
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 'targets': [ 5 'targets': [
6 { 6 {
7 # This target contains mocks and test utilities that don't belong in 7 # This target contains mocks and test utilities that don't belong in
8 # production libraries but are used by more than one test executable. 8 # production libraries but are used by more than one test executable.
9 'target_name': 'test_support_common', 9 'target_name': 'test_support_common',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after
1114 'browser/search_engines/template_url_service_util_unittest.cc', 1114 'browser/search_engines/template_url_service_util_unittest.cc',
1115 'browser/search_engines/template_url_service_sync_unittest.cc', 1115 'browser/search_engines/template_url_service_sync_unittest.cc',
1116 'browser/search_engines/template_url_service_unittest.cc', 1116 'browser/search_engines/template_url_service_unittest.cc',
1117 'browser/search_engines/template_url_parser_unittest.cc', 1117 'browser/search_engines/template_url_parser_unittest.cc',
1118 'browser/search_engines/template_url_prepopulate_data_unittest.cc', 1118 'browser/search_engines/template_url_prepopulate_data_unittest.cc',
1119 'browser/search_engines/template_url_scraper_unittest.cc', 1119 'browser/search_engines/template_url_scraper_unittest.cc',
1120 'browser/search_engines/template_url_unittest.cc', 1120 'browser/search_engines/template_url_unittest.cc',
1121 'browser/sessions/session_backend_unittest.cc', 1121 'browser/sessions/session_backend_unittest.cc',
1122 'browser/sessions/session_service_unittest.cc', 1122 'browser/sessions/session_service_unittest.cc',
1123 'browser/sessions/session_types_unittest.cc', 1123 'browser/sessions/session_types_unittest.cc',
1124 'browser/local_discovery/service_discovery_client_unittest.cc',
1124 'browser/shell_integration_unittest.cc', 1125 'browser/shell_integration_unittest.cc',
1125 'browser/shell_integration_win_unittest.cc', 1126 'browser/shell_integration_win_unittest.cc',
1126 'browser/signin/fake_auth_status_provider.cc', 1127 'browser/signin/fake_auth_status_provider.cc',
1127 'browser/signin/fake_auth_status_provider.h', 1128 'browser/signin/fake_auth_status_provider.h',
1128 'browser/signin/oauth2_token_service_test_util.cc', 1129 'browser/signin/oauth2_token_service_test_util.cc',
1129 'browser/signin/oauth2_token_service_test_util.h', 1130 'browser/signin/oauth2_token_service_test_util.h',
1130 'browser/signin/oauth2_token_service_unittest.cc', 1131 'browser/signin/oauth2_token_service_unittest.cc',
1131 'browser/signin/profile_oauth2_token_service_request_unittest.cc', 1132 'browser/signin/profile_oauth2_token_service_request_unittest.cc',
1132 'browser/signin/profile_oauth2_token_service_unittest.cc', 1133 'browser/signin/profile_oauth2_token_service_unittest.cc',
1133 'browser/signin/signin_global_error_unittest.cc', 1134 'browser/signin/signin_global_error_unittest.cc',
(...skipping 1326 matching lines...) Expand 10 before | Expand all | Expand 10 after
2460 ['enable_managed_users!=1', { 2461 ['enable_managed_users!=1', {
2461 'sources/': [ 2462 'sources/': [
2462 ['exclude', '^browser/managed_mode/'], 2463 ['exclude', '^browser/managed_mode/'],
2463 ], 2464 ],
2464 }], 2465 }],
2465 ['safe_browsing!=1', { 2466 ['safe_browsing!=1', {
2466 'sources/': [ 2467 'sources/': [
2467 ['exclude', '^browser/extensions/blacklist_unittest.cc'], 2468 ['exclude', '^browser/extensions/blacklist_unittest.cc'],
2468 ], 2469 ],
2469 }], 2470 }],
2471 ['enable_mdns != 1', {
2472 'sources!' : [
2473 'browser/local_discovery/service_discovery_client_unittest.cc',
2474 ],
2475 }],
2470 ], 2476 ],
2471 'target_conditions': [ 2477 'target_conditions': [
2472 ['OS == "ios"', { 2478 ['OS == "ios"', {
2473 'sources/': [ 2479 'sources/': [
2474 ['include', '^common/mac/nscoder_util_unittest\\.mm$'], 2480 ['include', '^common/mac/nscoder_util_unittest\\.mm$'],
2475 ], 2481 ],
2476 }], 2482 }],
2477 ], 2483 ],
2478 }, 2484 },
2479 { 2485 {
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
2585 # more details. 2591 # more details.
2586 'DebugInformationFormat': '3', 2592 'DebugInformationFormat': '3',
2587 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', 2593 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb',
2588 }, 2594 },
2589 }, 2595 },
2590 }, 2596 },
2591 ], 2597 ],
2592 }], 2598 }],
2593 ], # 'conditions' 2599 ], # 'conditions'
2594 } 2600 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698