| 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 'language_usage_metrics/language_usage_metrics_unittest.cc', | 44 'language_usage_metrics/language_usage_metrics_unittest.cc', |
| 45 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', | 45 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', |
| 46 'precache/content/precache_manager_unittest.cc', | 46 'precache/content/precache_manager_unittest.cc', |
| 47 'precache/core/precache_database_unittest.cc', | 47 'precache/core/precache_database_unittest.cc', |
| 48 'precache/core/precache_fetcher_unittest.cc', | 48 'precache/core/precache_fetcher_unittest.cc', |
| 49 'precache/core/precache_url_table_unittest.cc', | 49 'precache/core/precache_url_table_unittest.cc', |
| 50 'rappor/bloom_filter_unittest.cc', |
| 51 'rappor/byte_vector_utils_unittest.cc', |
| 52 'rappor/rappor_metric_unittest.cc', |
| 53 'rappor/rappor_service_unittest.cc', |
| 50 'sessions/serialized_navigation_entry_unittest.cc', | 54 'sessions/serialized_navigation_entry_unittest.cc', |
| 51 'signin/core/webdata/token_service_table_unittest.cc', | 55 'signin/core/webdata/token_service_table_unittest.cc', |
| 52 'test/run_all_unittests.cc', | 56 'test/run_all_unittests.cc', |
| 53 'translate/core/browser/translate_browser_metrics_unittest.cc', | 57 'translate/core/browser/translate_browser_metrics_unittest.cc', |
| 54 'translate/core/common/translate_metrics_unittest.cc', | 58 'translate/core/common/translate_metrics_unittest.cc', |
| 55 'translate/core/common/translate_util_unittest.cc', | 59 'translate/core/common/translate_util_unittest.cc', |
| 56 'translate/language_detection/language_detection_util_unittest.cc', | 60 'translate/language_detection/language_detection_util_unittest.cc', |
| 57 'url_matcher/regex_set_matcher_unittest.cc', | 61 'url_matcher/regex_set_matcher_unittest.cc', |
| 58 'url_matcher/string_pattern_unittest.cc', | 62 'url_matcher/string_pattern_unittest.cc', |
| 59 'url_matcher/substring_set_matcher_unittest.cc', | 63 'url_matcher/substring_set_matcher_unittest.cc', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 107 |
| 104 # Dependencies of json_schema | 108 # Dependencies of json_schema |
| 105 'components.gyp:json_schema', | 109 'components.gyp:json_schema', |
| 106 | 110 |
| 107 # Dependencies of language_usage_metrics | 111 # Dependencies of language_usage_metrics |
| 108 'components.gyp:language_usage_metrics', | 112 'components.gyp:language_usage_metrics', |
| 109 | 113 |
| 110 # Dependencies of precache/core | 114 # Dependencies of precache/core |
| 111 'components.gyp:precache_core', | 115 'components.gyp:precache_core', |
| 112 | 116 |
| 117 # Dependencies of rappor |
| 118 'components.gyp:rappor', |
| 119 |
| 113 # Dependencies of signin | 120 # Dependencies of signin |
| 114 'components.gyp:signin_core', | 121 'components.gyp:signin_core', |
| 115 | 122 |
| 116 # Dependencies of translate. | 123 # Dependencies of translate. |
| 117 'components.gyp:translate_core_browser', | 124 'components.gyp:translate_core_browser', |
| 118 'components.gyp:translate_core_common', | 125 'components.gyp:translate_core_common', |
| 119 'components.gyp:translate_language_detection', | 126 'components.gyp:translate_language_detection', |
| 120 | 127 |
| 121 # Dependencies of variations | 128 # Dependencies of variations |
| 122 'components.gyp:variations', | 129 'components.gyp:variations', |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 'dependencies': [ | 405 'dependencies': [ |
| 399 '../base/allocator/allocator.gyp:allocator', | 406 '../base/allocator/allocator.gyp:allocator', |
| 400 ], | 407 ], |
| 401 }], | 408 }], |
| 402 ], | 409 ], |
| 403 }, | 410 }, |
| 404 ], | 411 ], |
| 405 }], | 412 }], |
| 406 ], | 413 ], |
| 407 } | 414 } |
| OLD | NEW |