Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(386)

Side by Side Diff: components/components_tests.gyp

Issue 27047003: Precache tracking database (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@precache
Patch Set: Addressed comments Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | components/precache.gypi » ('j') | components/precache/core/precache_database.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_statistics_table_unittest.cc',
43 'precache/core/precache_url_table_unittest.cc',
41 'sessions/serialized_navigation_entry_unittest.cc', 44 'sessions/serialized_navigation_entry_unittest.cc',
42 'test/run_all_unittests.cc', 45 'test/run_all_unittests.cc',
43 'translate/common/translate_metrics_unittest.cc', 46 'translate/common/translate_metrics_unittest.cc',
44 'translate/common/translate_util_unittest.cc', 47 'translate/common/translate_util_unittest.cc',
45 'translate/language_detection/language_detection_util_unittest.cc', 48 'translate/language_detection/language_detection_util_unittest.cc',
46 # TODO(asvitkine): These should be tested on iOS too. 49 # TODO(asvitkine): These should be tested on iOS too.
47 'variations/entropy_provider_unittest.cc', 50 'variations/entropy_provider_unittest.cc',
48 'variations/metrics_util_unittest.cc', 51 'variations/metrics_util_unittest.cc',
49 'variations/variations_associated_data_unittest.cc', 52 'variations/variations_associated_data_unittest.cc',
50 'variations/variations_seed_processor_unittest.cc', 53 'variations/variations_seed_processor_unittest.cc',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 88
86 # Dependencies of intercept_navigation_resource_throttle_unittest.cc 89 # Dependencies of intercept_navigation_resource_throttle_unittest.cc
87 '../content/content_shell_and_tests.gyp:test_support_content', 90 '../content/content_shell_and_tests.gyp:test_support_content',
88 '../skia/skia.gyp:skia', 91 '../skia/skia.gyp:skia',
89 'components.gyp:navigation_interception', 92 'components.gyp:navigation_interception',
90 93
91 # Dependencies of policy 94 # Dependencies of policy
92 'components.gyp:policy_component', 95 'components.gyp:policy_component',
93 96
94 # Dependencies of precache 97 # Dependencies of precache
95 'components.gyp:precache_core', 98 'components.gyp:precache',
96 'components.gyp:precache_core_proto',
97 99
98 # Dependencies of sessions 100 # Dependencies of sessions
99 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 101 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
100 'components.gyp:sessions', 102 'components.gyp:sessions',
101 'components.gyp:sessions_test_support', 103 'components.gyp:sessions_test_support',
102 104
103 # Dependencies of translate. 105 # Dependencies of translate.
104 'components.gyp:translate_common', 106 'components.gyp:translate_common',
105 'components.gyp:translate_language_detection', 107 'components.gyp:translate_language_detection',
106 108
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 'dependencies': [ 303 'dependencies': [
302 '../base/allocator/allocator.gyp:allocator', 304 '../base/allocator/allocator.gyp:allocator',
303 ], 305 ],
304 }], 306 }],
305 ], 307 ],
306 }, 308 },
307 ], 309 ],
308 }], 310 }],
309 ], 311 ],
310 } 312 }
OLDNEW
« no previous file with comments | « no previous file | components/precache.gypi » ('j') | components/precache/core/precache_database.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698