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 21 matching lines...) Expand all Loading... |
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_fetcher_unittest.cc', | 40 'precache/core/precache_fetcher_unittest.cc', |
41 'sessions/serialized_navigation_entry_unittest.cc', | 41 'sessions/serialized_navigation_entry_unittest.cc', |
| 42 'rappor/bloom_filter_unittest.cc', |
| 43 'rappor/byte_vector_utils_unittest.cc', |
| 44 'rappor/rappor_metric_unittest.cc', |
| 45 'rappor/rappor_service_unittest.cc', |
42 'test/run_all_unittests.cc', | 46 'test/run_all_unittests.cc', |
43 'translate/common/translate_metrics_unittest.cc', | 47 'translate/common/translate_metrics_unittest.cc', |
44 'translate/common/translate_util_unittest.cc', | 48 'translate/common/translate_util_unittest.cc', |
45 'translate/language_detection/language_detection_util_unittest.cc', | 49 'translate/language_detection/language_detection_util_unittest.cc', |
46 # TODO(asvitkine): These should be tested on iOS too. | 50 # TODO(asvitkine): These should be tested on iOS too. |
47 'variations/entropy_provider_unittest.cc', | 51 'variations/entropy_provider_unittest.cc', |
48 'variations/metrics_util_unittest.cc', | 52 'variations/metrics_util_unittest.cc', |
49 'variations/variations_associated_data_unittest.cc', | 53 'variations/variations_associated_data_unittest.cc', |
50 'variations/variations_seed_processor_unittest.cc', | 54 'variations/variations_seed_processor_unittest.cc', |
51 'visitedlink/test/visitedlink_unittest.cc', | 55 'visitedlink/test/visitedlink_unittest.cc', |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 '../skia/skia.gyp:skia', | 92 '../skia/skia.gyp:skia', |
89 'components.gyp:navigation_interception', | 93 'components.gyp:navigation_interception', |
90 | 94 |
91 # Dependencies of policy | 95 # Dependencies of policy |
92 'components.gyp:policy_component', | 96 'components.gyp:policy_component', |
93 | 97 |
94 # Dependencies of precache | 98 # Dependencies of precache |
95 'components.gyp:precache_core', | 99 'components.gyp:precache_core', |
96 'components.gyp:precache_core_proto', | 100 'components.gyp:precache_core_proto', |
97 | 101 |
| 102 # Dependencies of rappor |
| 103 'components.gyp:rappor', |
| 104 |
98 # Dependencies of sessions | 105 # Dependencies of sessions |
99 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 106 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
100 'components.gyp:sessions', | 107 'components.gyp:sessions', |
101 'components.gyp:sessions_test_support', | 108 'components.gyp:sessions_test_support', |
102 | 109 |
103 # Dependencies of translate. | 110 # Dependencies of translate. |
104 'components.gyp:translate_common', | 111 'components.gyp:translate_common', |
105 'components.gyp:translate_language_detection', | 112 'components.gyp:translate_language_detection', |
106 | 113 |
107 # Dependencies of variations | 114 # Dependencies of variations |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 'dependencies': [ | 309 'dependencies': [ |
303 '../base/allocator/allocator.gyp:allocator', | 310 '../base/allocator/allocator.gyp:allocator', |
304 ], | 311 ], |
305 }], | 312 }], |
306 ], | 313 ], |
307 }, | 314 }, |
308 ], | 315 ], |
309 }], | 316 }], |
310 ], | 317 ], |
311 } | 318 } |
OLD | NEW |