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

Side by Side Diff: components/components_tests.gypi

Issue 27047003: Precache tracking database (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@precache
Patch Set: General fixes, added tests, and moved PrecacheManager into component Created 7 years, 2 months 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
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 'conditions': [ 6 'conditions': [
7 ['android_webview_build == 0', { 7 ['android_webview_build == 0', {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'components_unittests', 10 'target_name': 'components_unittests',
11 'type': '<(gtest_target_type)', 11 'type': '<(gtest_target_type)',
12 'sources': [ 12 'sources': [
13 'autofill/core/common/form_data_unittest.cc', 13 'autofill/core/common/form_data_unittest.cc',
14 'autofill/core/common/form_field_data_unittest.cc', 14 'autofill/core/common/form_field_data_unittest.cc',
15 'auto_login_parser/auto_login_parser_unittest.cc', 15 'auto_login_parser/auto_login_parser_unittest.cc',
16 'browser_context_keyed_service/browser_context_dependency_manager_un ittest.cc', 16 'browser_context_keyed_service/browser_context_dependency_manager_un ittest.cc',
17 'browser_context_keyed_service/dependency_graph_unittest.cc', 17 'browser_context_keyed_service/dependency_graph_unittest.cc',
18 'dom_distiller/core/distiller_url_fetcher_unittest.cc', 18 'dom_distiller/core/distiller_url_fetcher_unittest.cc',
19 'dom_distiller/core/dom_distiller_database_unittest.cc', 19 'dom_distiller/core/dom_distiller_database_unittest.cc',
20 'dom_distiller/core/dom_distiller_store_unittest.cc', 20 'dom_distiller/core/dom_distiller_store_unittest.cc',
21 'dom_distiller/core/article_entry_unittest.cc', 21 'dom_distiller/core/article_entry_unittest.cc',
22 'json_schema/json_schema_validator_unittest.cc', 22 'json_schema/json_schema_validator_unittest.cc',
23 'json_schema/json_schema_validator_unittest_base.cc', 23 'json_schema/json_schema_validator_unittest_base.cc',
24 'json_schema/json_schema_validator_unittest_base.h', 24 'json_schema/json_schema_validator_unittest_base.h',
25 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc', 25 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc',
26 'precache/core/precache_database_unittest.cc',
26 'precache/core/precache_fetcher_unittest.cc', 27 'precache/core/precache_fetcher_unittest.cc',
28 'precache/core/precache_statistics_table_unittest.cc',
29 'precache/core/precache_url_table_unittest.cc',
27 'sessions/serialized_navigation_entry_unittest.cc', 30 'sessions/serialized_navigation_entry_unittest.cc',
28 'test/run_all_unittests.cc', 31 'test/run_all_unittests.cc',
29 'translate/common/translate_metrics_unittest.cc', 32 'translate/common/translate_metrics_unittest.cc',
30 'translate/common/translate_util_unittest.cc', 33 'translate/common/translate_util_unittest.cc',
31 'translate/language_detection/language_detection_util_unittest.cc', 34 'translate/language_detection/language_detection_util_unittest.cc',
32 # TODO(asvitkine): These should be tested on iOS too. 35 # TODO(asvitkine): These should be tested on iOS too.
33 'variations/entropy_provider_unittest.cc', 36 'variations/entropy_provider_unittest.cc',
34 'variations/metrics_util_unittest.cc', 37 'variations/metrics_util_unittest.cc',
35 'variations/variations_associated_data_unittest.cc', 38 'variations/variations_associated_data_unittest.cc',
36 'variations/variations_seed_processor_unittest.cc', 39 'variations/variations_seed_processor_unittest.cc',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 72
70 # Dependencies of intercept_navigation_resource_throttle_unittest.cc 73 # Dependencies of intercept_navigation_resource_throttle_unittest.cc
71 '../content/content.gyp:test_support_content', 74 '../content/content.gyp:test_support_content',
72 '../skia/skia.gyp:skia', 75 '../skia/skia.gyp:skia',
73 'navigation_interception', 76 'navigation_interception',
74 77
75 # Dependencies of policy 78 # Dependencies of policy
76 'policy_component', 79 'policy_component',
77 80
78 # Dependencies of precache 81 # Dependencies of precache
79 'precache_core', 82 'precache',
80 'precache_core_proto',
81 83
82 # Dependencies of sessions 84 # Dependencies of sessions
83 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 85 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
84 'sessions', 86 'sessions',
85 'sessions_test_support', 87 'sessions_test_support',
86 88
87 # Dependencies of translate. 89 # Dependencies of translate.
88 'translate_common', 90 'translate_common',
89 'translate_language_detection', 91 'translate_language_detection',
90 92
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo nents_unittests<(SHARED_LIB_SUFFIX)', 200 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo nents_unittests<(SHARED_LIB_SUFFIX)',
199 }, 201 },
200 'includes': [ '../build/apk_test.gypi' ], 202 'includes': [ '../build/apk_test.gypi' ],
201 }, 203 },
202 ], 204 ],
203 }], 205 }],
204 ], 206 ],
205 }], 207 }],
206 ], 208 ],
207 } 209 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698