| 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 19 matching lines...) Expand all Loading... |
| 30 'dom_distiller/core/dom_distiller_model_unittest.cc', | 30 'dom_distiller/core/dom_distiller_model_unittest.cc', |
| 31 'dom_distiller/core/dom_distiller_service_unittest.cc', | 31 'dom_distiller/core/dom_distiller_service_unittest.cc', |
| 32 'dom_distiller/core/dom_distiller_store_unittest.cc', | 32 'dom_distiller/core/dom_distiller_store_unittest.cc', |
| 33 'dom_distiller/core/fake_distiller.cc', | 33 'dom_distiller/core/fake_distiller.cc', |
| 34 'dom_distiller/core/fake_distiller.h', | 34 'dom_distiller/core/fake_distiller.h', |
| 35 'dom_distiller/core/task_tracker_unittest.cc', | 35 'dom_distiller/core/task_tracker_unittest.cc', |
| 36 'json_schema/json_schema_validator_unittest.cc', | 36 'json_schema/json_schema_validator_unittest.cc', |
| 37 'json_schema/json_schema_validator_unittest_base.cc', | 37 'json_schema/json_schema_validator_unittest_base.cc', |
| 38 'json_schema/json_schema_validator_unittest_base.h', | 38 'json_schema/json_schema_validator_unittest_base.h', |
| 39 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', | 39 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', |
| 40 'precache/core/precache_database_unittest.cc', |
| 40 'precache/core/precache_fetcher_unittest.cc', | 41 'precache/core/precache_fetcher_unittest.cc', |
| 42 'precache/core/precache_url_table_unittest.cc', |
| 41 'sessions/serialized_navigation_entry_unittest.cc', | 43 'sessions/serialized_navigation_entry_unittest.cc', |
| 42 'test/run_all_unittests.cc', | 44 'test/run_all_unittests.cc', |
| 43 'translate/common/translate_metrics_unittest.cc', | 45 'translate/common/translate_metrics_unittest.cc', |
| 44 'translate/common/translate_util_unittest.cc', | 46 'translate/common/translate_util_unittest.cc', |
| 45 'translate/language_detection/language_detection_util_unittest.cc', | 47 'translate/language_detection/language_detection_util_unittest.cc', |
| 46 # TODO(asvitkine): These should be tested on iOS too. | 48 # TODO(asvitkine): These should be tested on iOS too. |
| 47 'variations/entropy_provider_unittest.cc', | 49 'variations/entropy_provider_unittest.cc', |
| 48 'variations/metrics_util_unittest.cc', | 50 'variations/metrics_util_unittest.cc', |
| 49 'variations/variations_associated_data_unittest.cc', | 51 'variations/variations_associated_data_unittest.cc', |
| 50 'variations/variations_seed_processor_unittest.cc', | 52 'variations/variations_seed_processor_unittest.cc', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 # Dependencies of intercept_navigation_resource_throttle_unittest.cc | 88 # Dependencies of intercept_navigation_resource_throttle_unittest.cc |
| 87 '../content/content_shell_and_tests.gyp:test_support_content', | 89 '../content/content_shell_and_tests.gyp:test_support_content', |
| 88 '../skia/skia.gyp:skia', | 90 '../skia/skia.gyp:skia', |
| 89 'components.gyp:navigation_interception', | 91 'components.gyp:navigation_interception', |
| 90 | 92 |
| 91 # Dependencies of policy | 93 # Dependencies of policy |
| 92 'components.gyp:policy_component', | 94 'components.gyp:policy_component', |
| 93 | 95 |
| 94 # Dependencies of precache | 96 # Dependencies of precache |
| 95 'components.gyp:precache_core', | 97 'components.gyp:precache_core', |
| 96 'components.gyp:precache_core_proto', | |
| 97 | 98 |
| 98 # Dependencies of sessions | 99 # Dependencies of sessions |
| 99 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 100 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 100 'components.gyp:sessions', | 101 'components.gyp:sessions', |
| 101 'components.gyp:sessions_test_support', | 102 'components.gyp:sessions_test_support', |
| 102 | 103 |
| 103 # Dependencies of translate. | 104 # Dependencies of translate. |
| 104 'components.gyp:translate_common', | 105 'components.gyp:translate_common', |
| 105 'components.gyp:translate_language_detection', | 106 'components.gyp:translate_language_detection', |
| 106 | 107 |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 'dependencies': [ | 315 'dependencies': [ |
| 315 '../base/allocator/allocator.gyp:allocator', | 316 '../base/allocator/allocator.gyp:allocator', |
| 316 ], | 317 ], |
| 317 }], | 318 }], |
| 318 ], | 319 ], |
| 319 }, | 320 }, |
| 320 ], | 321 ], |
| 321 }], | 322 }], |
| 322 ], | 323 ], |
| 323 } | 324 } |
| OLD | NEW |