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 '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, |
11 }, | 11 }, |
12 'conditions': [ | 12 'conditions': [ |
13 ['android_webview_build == 0', { | 13 ['android_webview_build == 0', { |
14 'targets': [ | 14 'targets': [ |
15 { | 15 { |
16 'target_name': 'components_unittests', | 16 'target_name': 'components_unittests', |
17 'type': '<(gtest_target_type)', | 17 'type': '<(gtest_target_type)', |
18 'sources': [ | 18 'sources': [ |
| 19 'auto_login_parser/auto_login_parser_unittest.cc', |
19 'autofill/core/common/form_data_unittest.cc', | 20 'autofill/core/common/form_data_unittest.cc', |
20 'autofill/core/common/form_field_data_unittest.cc', | 21 'autofill/core/common/form_field_data_unittest.cc', |
21 'auto_login_parser/auto_login_parser_unittest.cc', | 22 'autofill/core/common/password_form_fill_data_unittest.cc', |
22 'browser_context_keyed_service/browser_context_dependency_manager_un
ittest.cc', | 23 'browser_context_keyed_service/browser_context_dependency_manager_un
ittest.cc', |
23 'browser_context_keyed_service/dependency_graph_unittest.cc', | 24 'browser_context_keyed_service/dependency_graph_unittest.cc', |
24 'dom_distiller/core/distiller_url_fetcher_unittest.cc', | 25 'dom_distiller/core/distiller_url_fetcher_unittest.cc', |
25 'dom_distiller/core/dom_distiller_database_unittest.cc', | 26 'dom_distiller/core/dom_distiller_database_unittest.cc', |
26 'dom_distiller/core/dom_distiller_model_unittest.cc', | 27 'dom_distiller/core/dom_distiller_model_unittest.cc', |
27 'dom_distiller/core/dom_distiller_store_unittest.cc', | 28 'dom_distiller/core/dom_distiller_store_unittest.cc', |
28 'dom_distiller/core/article_entry_unittest.cc', | 29 'dom_distiller/core/article_entry_unittest.cc', |
29 'json_schema/json_schema_validator_unittest.cc', | 30 'json_schema/json_schema_validator_unittest.cc', |
30 'json_schema/json_schema_validator_unittest_base.cc', | 31 'json_schema/json_schema_validator_unittest_base.cc', |
31 'json_schema/json_schema_validator_unittest_base.h', | 32 'json_schema/json_schema_validator_unittest_base.h', |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', | 206 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', |
206 }, | 207 }, |
207 'includes': [ '../build/apk_test.gypi' ], | 208 'includes': [ '../build/apk_test.gypi' ], |
208 }, | 209 }, |
209 ], | 210 ], |
210 }], | 211 }], |
211 ], | 212 ], |
212 }], | 213 }], |
213 ], | 214 ], |
214 } | 215 } |
OLD | NEW |