| 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/common/translate_metrics_unittest.cc', | 52 'translate/common/translate_metrics_unittest.cc', |
| 52 'translate/common/translate_util_unittest.cc', | 53 'translate/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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 97 |
| 97 # Dependencies of encryptor | 98 # Dependencies of encryptor |
| 98 'components.gyp:encryptor', | 99 'components.gyp:encryptor', |
| 99 | 100 |
| 100 # Dependencies of json_schema | 101 # Dependencies of json_schema |
| 101 'components.gyp:json_schema', | 102 'components.gyp:json_schema', |
| 102 | 103 |
| 103 # Dependencies of precache/core | 104 # Dependencies of precache/core |
| 104 'components.gyp:precache_core', | 105 'components.gyp:precache_core', |
| 105 | 106 |
| 107 # Dependencies of signin |
| 108 'components.gyp:signin_core', |
| 109 |
| 106 # Dependencies of translate. | 110 # Dependencies of translate. |
| 107 'components.gyp:translate_common', | 111 'components.gyp:translate_common', |
| 108 'components.gyp:translate_language_detection', | 112 'components.gyp:translate_language_detection', |
| 109 | 113 |
| 110 # Dependencies of variations | 114 # Dependencies of variations |
| 111 'components.gyp:variations', | 115 'components.gyp:variations', |
| 112 ], | 116 ], |
| 113 'conditions': [ | 117 'conditions': [ |
| 114 ['OS != "ios"', { | 118 ['OS != "ios"', { |
| 115 'dependencies': [ | 119 'dependencies': [ |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 'dependencies': [ | 389 'dependencies': [ |
| 386 '../base/allocator/allocator.gyp:allocator', | 390 '../base/allocator/allocator.gyp:allocator', |
| 387 ], | 391 ], |
| 388 }], | 392 }], |
| 389 ], | 393 ], |
| 390 }, | 394 }, |
| 391 ], | 395 ], |
| 392 }], | 396 }], |
| 393 ], | 397 ], |
| 394 } | 398 } |
| OLD | NEW |