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 '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 'auto_login_parser/auto_login_parser_unittest.cc', | 13 'auto_login_parser/auto_login_parser_unittest.cc', |
14 'browser_context_keyed_service/browser_context_dependency_manager_un
ittest.cc', | 14 'browser_context_keyed_service/browser_context_dependency_manager_un
ittest.cc', |
15 'browser_context_keyed_service/dependency_graph_unittest.cc', | 15 'browser_context_keyed_service/dependency_graph_unittest.cc', |
16 'json_schema/json_schema_validator_unittest.cc', | 16 'json_schema/json_schema_validator_unittest.cc', |
17 'json_schema/json_schema_validator_unittest_base.cc', | 17 'json_schema/json_schema_validator_unittest_base.cc', |
18 'json_schema/json_schema_validator_unittest_base.h', | 18 'json_schema/json_schema_validator_unittest_base.h', |
19 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', | 19 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', |
20 'sessions/serialized_navigation_entry_unittest.cc', | 20 'sessions/serialized_navigation_entry_unittest.cc', |
21 'test/run_all_unittests.cc', | 21 'test/run_all_unittests.cc', |
| 22 # TODO(asvitkine): These should be tested on iOS too. |
| 23 'variations/entropy_provider_unittest.cc', |
| 24 'variations/metrics_util_unittest.cc', |
| 25 'variations/variations_associated_data_unittest.cc', |
| 26 'variations/variations_seed_processor_unittest.cc', |
22 'visitedlink/test/visitedlink_unittest.cc', | 27 'visitedlink/test/visitedlink_unittest.cc', |
23 'webdata/encryptor/encryptor_password_mac_unittest.cc', | 28 'webdata/encryptor/encryptor_password_mac_unittest.cc', |
24 'webdata/encryptor/encryptor_unittest.cc', | 29 'webdata/encryptor/encryptor_unittest.cc', |
25 'web_modal/web_contents_modal_dialog_manager_unittest.cc', | 30 'web_modal/web_contents_modal_dialog_manager_unittest.cc', |
26 ], | 31 ], |
27 'include_dirs': [ | 32 'include_dirs': [ |
28 '..', | 33 '..', |
29 ], | 34 ], |
30 'dependencies': [ | 35 'dependencies': [ |
31 '../base/base.gyp:test_support_base', | 36 '../base/base.gyp:test_support_base', |
(...skipping 18 matching lines...) Expand all Loading... |
50 'navigation_interception', | 55 'navigation_interception', |
51 | 56 |
52 # Dependencies of policy | 57 # Dependencies of policy |
53 'policy_component', | 58 'policy_component', |
54 | 59 |
55 # Dependencies of sessions | 60 # Dependencies of sessions |
56 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 61 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
57 'sessions', | 62 'sessions', |
58 'sessions_test_support', | 63 'sessions_test_support', |
59 | 64 |
| 65 # Dependencies of variations |
| 66 'variations', |
| 67 |
60 # Dependencies of visitedlink | 68 # Dependencies of visitedlink |
61 'visitedlink_browser', | 69 'visitedlink_browser', |
62 'visitedlink_renderer', | 70 'visitedlink_renderer', |
63 '../content/content_resources.gyp:content_resources', | 71 '../content/content_resources.gyp:content_resources', |
64 | 72 |
65 'web_modal', | 73 'web_modal', |
66 ], | 74 ], |
67 'conditions': [ | 75 'conditions': [ |
68 ['OS == "android"', { | 76 ['OS == "android"', { |
69 'sources!': [ | 77 'sources!': [ |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', | 155 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', |
148 }, | 156 }, |
149 'includes': [ '../build/apk_test.gypi' ], | 157 'includes': [ '../build/apk_test.gypi' ], |
150 }, | 158 }, |
151 ], | 159 ], |
152 }], | 160 }], |
153 ], | 161 ], |
154 }], | 162 }], |
155 ], | 163 ], |
156 } | 164 } |
OLD | NEW |