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

Side by Side Diff: components/components_tests.gypi

Issue 25531002: Move language detection to a component (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Minor changes 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 ['OS != "ios"', { 7 ['OS != "ios"', {
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/dom_distiller_database_unittest.cc', 18 'dom_distiller/core/dom_distiller_database_unittest.cc',
19 'json_schema/json_schema_validator_unittest.cc', 19 'json_schema/json_schema_validator_unittest.cc',
20 'json_schema/json_schema_validator_unittest_base.cc', 20 'json_schema/json_schema_validator_unittest_base.cc',
21 'json_schema/json_schema_validator_unittest_base.h', 21 'json_schema/json_schema_validator_unittest_base.h',
22 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc', 22 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc',
23 'sessions/serialized_navigation_entry_unittest.cc', 23 'sessions/serialized_navigation_entry_unittest.cc',
24 'test/run_all_unittests.cc', 24 'test/run_all_unittests.cc',
25 'translate/common/translate_metrics_unittest.cc',
26 'translate/common/translate_util_unittest.cc',
27 'translate/language_detection/language_detection_util_unittest.cc',
25 # TODO(asvitkine): These should be tested on iOS too. 28 # TODO(asvitkine): These should be tested on iOS too.
26 'variations/entropy_provider_unittest.cc', 29 'variations/entropy_provider_unittest.cc',
27 'variations/metrics_util_unittest.cc', 30 'variations/metrics_util_unittest.cc',
28 'variations/variations_associated_data_unittest.cc', 31 'variations/variations_associated_data_unittest.cc',
29 'variations/variations_seed_processor_unittest.cc', 32 'variations/variations_seed_processor_unittest.cc',
30 'visitedlink/test/visitedlink_unittest.cc', 33 'visitedlink/test/visitedlink_unittest.cc',
31 'webdata/encryptor/encryptor_password_mac_unittest.cc', 34 'webdata/encryptor/encryptor_password_mac_unittest.cc',
32 'webdata/encryptor/encryptor_unittest.cc', 35 'webdata/encryptor/encryptor_unittest.cc',
33 'web_modal/web_contents_modal_dialog_manager_unittest.cc', 36 'web_modal/web_contents_modal_dialog_manager_unittest.cc',
34 ], 37 ],
(...skipping 30 matching lines...) Expand all
65 'navigation_interception', 68 'navigation_interception',
66 69
67 # Dependencies of policy 70 # Dependencies of policy
68 'policy_component', 71 'policy_component',
69 72
70 # Dependencies of sessions 73 # Dependencies of sessions
71 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 74 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
72 'sessions', 75 'sessions',
73 'sessions_test_support', 76 'sessions_test_support',
74 77
78 # Dependencies of translate.
79 'translate_common',
80 'translate_language_detection',
81
75 # Dependencies of variations 82 # Dependencies of variations
76 'variations', 83 'variations',
77 84
78 # Dependencies of visitedlink 85 # Dependencies of visitedlink
79 'visitedlink_browser', 86 'visitedlink_browser',
80 'visitedlink_renderer', 87 'visitedlink_renderer',
81 '../content/content_resources.gyp:content_resources', 88 '../content/content_resources.gyp:content_resources',
82 89
83 'web_modal', 90 'web_modal',
84 ], 91 ],
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo nents_unittests<(SHARED_LIB_SUFFIX)', 172 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo nents_unittests<(SHARED_LIB_SUFFIX)',
166 }, 173 },
167 'includes': [ '../build/apk_test.gypi' ], 174 'includes': [ '../build/apk_test.gypi' ],
168 }, 175 },
169 ], 176 ],
170 }], 177 }],
171 ], 178 ],
172 }], 179 }],
173 ], 180 ],
174 } 181 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698