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 '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 'json_schema/json_schema_validator_unittest.cc', | 18 'json_schema/json_schema_validator_unittest.cc', |
19 'json_schema/json_schema_validator_unittest_base.cc', | 19 'json_schema/json_schema_validator_unittest_base.cc', |
20 'json_schema/json_schema_validator_unittest_base.h', | 20 'json_schema/json_schema_validator_unittest_base.h', |
21 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', | 21 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', |
| 22 'plugins/renderer/plugin_uma_unittest.cc', |
22 'sessions/serialized_navigation_entry_unittest.cc', | 23 'sessions/serialized_navigation_entry_unittest.cc', |
23 'test/run_all_unittests.cc', | 24 'test/run_all_unittests.cc', |
24 # TODO(asvitkine): These should be tested on iOS too. | 25 # TODO(asvitkine): These should be tested on iOS too. |
25 'variations/entropy_provider_unittest.cc', | 26 'variations/entropy_provider_unittest.cc', |
26 'variations/metrics_util_unittest.cc', | 27 'variations/metrics_util_unittest.cc', |
27 'variations/variations_associated_data_unittest.cc', | 28 'variations/variations_associated_data_unittest.cc', |
28 'variations/variations_seed_processor_unittest.cc', | 29 'variations/variations_seed_processor_unittest.cc', |
29 'visitedlink/test/visitedlink_unittest.cc', | 30 'visitedlink/test/visitedlink_unittest.cc', |
30 'webdata/encryptor/encryptor_password_mac_unittest.cc', | 31 'webdata/encryptor/encryptor_password_mac_unittest.cc', |
31 'webdata/encryptor/encryptor_unittest.cc', | 32 'webdata/encryptor/encryptor_unittest.cc', |
(...skipping 19 matching lines...) Expand all Loading... |
51 # Dependencies of encryptor | 52 # Dependencies of encryptor |
52 'encryptor', | 53 'encryptor', |
53 | 54 |
54 # Dependencies of json_schema | 55 # Dependencies of json_schema |
55 'json_schema', | 56 'json_schema', |
56 | 57 |
57 # Dependencies of intercept_navigation_resource_throttle_unittest.cc | 58 # Dependencies of intercept_navigation_resource_throttle_unittest.cc |
58 '../content/content.gyp:test_support_content', | 59 '../content/content.gyp:test_support_content', |
59 '../skia/skia.gyp:skia', | 60 '../skia/skia.gyp:skia', |
60 'navigation_interception', | 61 'navigation_interception', |
| 62 |
| 63 # Dependecies of plugins |
| 64 'plugins_renderer', |
61 | 65 |
62 # Dependencies of policy | 66 # Dependencies of policy |
63 'policy_component', | 67 'policy_component', |
64 | 68 |
65 # Dependencies of sessions | 69 # Dependencies of sessions |
66 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 70 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
67 'sessions', | 71 'sessions', |
68 'sessions_test_support', | 72 'sessions_test_support', |
69 | 73 |
70 # Dependencies of variations | 74 # Dependencies of variations |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', | 164 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', |
161 }, | 165 }, |
162 'includes': [ '../build/apk_test.gypi' ], | 166 'includes': [ '../build/apk_test.gypi' ], |
163 }, | 167 }, |
164 ], | 168 ], |
165 }], | 169 }], |
166 ], | 170 ], |
167 }], | 171 }], |
168 ], | 172 ], |
169 } | 173 } |
OLD | NEW |