OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 29 matching lines...) Expand all Loading... |
40 'dom_distiller/core/task_tracker_unittest.cc', | 40 'dom_distiller/core/task_tracker_unittest.cc', |
41 'json_schema/json_schema_validator_unittest.cc', | 41 'json_schema/json_schema_validator_unittest.cc', |
42 'json_schema/json_schema_validator_unittest_base.cc', | 42 'json_schema/json_schema_validator_unittest_base.cc', |
43 'json_schema/json_schema_validator_unittest_base.h', | 43 'json_schema/json_schema_validator_unittest_base.h', |
44 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', | 44 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', |
45 'precache/content/precache_manager_unittest.cc', | 45 'precache/content/precache_manager_unittest.cc', |
46 'precache/core/precache_database_unittest.cc', | 46 'precache/core/precache_database_unittest.cc', |
47 'precache/core/precache_fetcher_unittest.cc', | 47 'precache/core/precache_fetcher_unittest.cc', |
48 'precache/core/precache_url_table_unittest.cc', | 48 'precache/core/precache_url_table_unittest.cc', |
49 'sessions/serialized_navigation_entry_unittest.cc', | 49 'sessions/serialized_navigation_entry_unittest.cc', |
| 50 'signin/core/webdata/token_service_table_unittest.cc', |
50 'test/run_all_unittests.cc', | 51 'test/run_all_unittests.cc', |
51 'translate/core/common/translate_metrics_unittest.cc', | 52 'translate/core/common/translate_metrics_unittest.cc', |
52 'translate/core/common/translate_util_unittest.cc', | 53 'translate/core/common/translate_util_unittest.cc', |
53 'translate/language_detection/language_detection_util_unittest.cc', | 54 'translate/language_detection/language_detection_util_unittest.cc', |
54 'url_matcher/regex_set_matcher_unittest.cc', | 55 'url_matcher/regex_set_matcher_unittest.cc', |
55 'url_matcher/string_pattern_unittest.cc', | 56 'url_matcher/string_pattern_unittest.cc', |
56 'url_matcher/substring_set_matcher_unittest.cc', | 57 'url_matcher/substring_set_matcher_unittest.cc', |
57 'url_matcher/url_matcher_factory_unittest.cc', | 58 'url_matcher/url_matcher_factory_unittest.cc', |
58 'url_matcher/url_matcher_unittest.cc', | 59 'url_matcher/url_matcher_unittest.cc', |
59 # TODO(asvitkine): These should be tested on iOS too. | 60 # TODO(asvitkine): These should be tested on iOS too. |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 | 98 |
98 # Dependencies of encryptor | 99 # Dependencies of encryptor |
99 'components.gyp:encryptor', | 100 'components.gyp:encryptor', |
100 | 101 |
101 # Dependencies of json_schema | 102 # Dependencies of json_schema |
102 'components.gyp:json_schema', | 103 'components.gyp:json_schema', |
103 | 104 |
104 # Dependencies of precache/core | 105 # Dependencies of precache/core |
105 'components.gyp:precache_core', | 106 'components.gyp:precache_core', |
106 | 107 |
| 108 # Dependencies of signin |
| 109 'components.gyp:signin_core', |
| 110 |
107 # Dependencies of translate. | 111 # Dependencies of translate. |
108 'components.gyp:translate_core_common', | 112 'components.gyp:translate_core_common', |
109 'components.gyp:translate_language_detection', | 113 'components.gyp:translate_language_detection', |
110 | 114 |
111 # Dependencies of variations | 115 # Dependencies of variations |
112 'components.gyp:variations', | 116 'components.gyp:variations', |
113 ], | 117 ], |
114 'conditions': [ | 118 'conditions': [ |
115 ['OS != "ios"', { | 119 ['OS != "ios"', { |
116 'dependencies': [ | 120 'dependencies': [ |
(...skipping 30 matching lines...) Expand all Loading... |
147 ['exclude', '\\.cc$'], | 151 ['exclude', '\\.cc$'], |
148 ['include', '^test/run_all_unittests\\.cc$'], | 152 ['include', '^test/run_all_unittests\\.cc$'], |
149 # TODO(ios): Include files here as they are made to work, see | 153 # TODO(ios): Include files here as they are made to work, see |
150 # http://crbug.com/303011. | 154 # http://crbug.com/303011. |
151 # TODO(asvitkine): Bring up variations/ unittests on iOS. | 155 # TODO(asvitkine): Bring up variations/ unittests on iOS. |
152 # TODO(blundell): Bring up json_schema/ unittests on iOS. | 156 # TODO(blundell): Bring up json_schema/ unittests on iOS. |
153 ['include', '^auto_login_parser/'], | 157 ['include', '^auto_login_parser/'], |
154 ['include', '^autofill/'], | 158 ['include', '^autofill/'], |
155 ['include', '^dom_distiller/'], | 159 ['include', '^dom_distiller/'], |
156 ['include', '^precache/core/'], | 160 ['include', '^precache/core/'], |
| 161 ['include', '^signin/'], |
157 ['include', '^translate/'], | 162 ['include', '^translate/'], |
158 ], | 163 ], |
159 }], | 164 }], |
160 ['disable_nacl==0', { | 165 ['disable_nacl==0', { |
161 'sources': [ | 166 'sources': [ |
162 'nacl/browser/nacl_file_host_unittest.cc', | 167 'nacl/browser/nacl_file_host_unittest.cc', |
163 'nacl/browser/nacl_process_host_unittest.cc', | 168 'nacl/browser/nacl_process_host_unittest.cc', |
164 'nacl/browser/nacl_validation_cache_unittest.cc', | 169 'nacl/browser/nacl_validation_cache_unittest.cc', |
165 'nacl/browser/pnacl_host_unittest.cc', | 170 'nacl/browser/pnacl_host_unittest.cc', |
166 'nacl/browser/pnacl_translation_cache_unittest.cc', | 171 'nacl/browser/pnacl_translation_cache_unittest.cc', |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 'dependencies': [ | 391 'dependencies': [ |
387 '../base/allocator/allocator.gyp:allocator', | 392 '../base/allocator/allocator.gyp:allocator', |
388 ], | 393 ], |
389 }], | 394 }], |
390 ], | 395 ], |
391 }, | 396 }, |
392 ], | 397 ], |
393 }], | 398 }], |
394 ], | 399 ], |
395 } | 400 } |
OLD | NEW |