| 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', |
| 17 'json_schema/json_schema_validator_unittest_base.cc', |
| 18 'json_schema/json_schema_validator_unittest_base.h', |
| 16 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', | 19 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', |
| 17 'sessions/serialized_navigation_entry_unittest.cc', | 20 'sessions/serialized_navigation_entry_unittest.cc', |
| 18 'test/run_all_unittests.cc', | 21 'test/run_all_unittests.cc', |
| 19 'visitedlink/test/visitedlink_unittest.cc', | 22 'visitedlink/test/visitedlink_unittest.cc', |
| 20 'webdata/encryptor/encryptor_password_mac_unittest.cc', | 23 'webdata/encryptor/encryptor_password_mac_unittest.cc', |
| 21 'webdata/encryptor/encryptor_unittest.cc', | 24 'webdata/encryptor/encryptor_unittest.cc', |
| 22 'web_modal/web_contents_modal_dialog_manager_unittest.cc', | 25 'web_modal/web_contents_modal_dialog_manager_unittest.cc', |
| 23 ], | 26 ], |
| 24 'include_dirs': [ | 27 'include_dirs': [ |
| 25 '..', | 28 '..', |
| 26 ], | 29 ], |
| 27 'dependencies': [ | 30 'dependencies': [ |
| 28 '../base/base.gyp:test_support_base', | 31 '../base/base.gyp:test_support_base', |
| 29 '../testing/gmock.gyp:gmock', | 32 '../testing/gmock.gyp:gmock', |
| 30 '../testing/gtest.gyp:gtest', | 33 '../testing/gtest.gyp:gtest', |
| 31 | 34 |
| 32 # Dependencies of auto_login_parser | 35 # Dependencies of auto_login_parser |
| 33 'auto_login_parser', | 36 'auto_login_parser', |
| 34 | 37 |
| 35 # Dependencies of browser_context_keyed_service | 38 # Dependencies of browser_context_keyed_service |
| 36 'browser_context_keyed_service', | 39 'browser_context_keyed_service', |
| 37 | 40 |
| 38 # Dependencies of encryptor | 41 # Dependencies of encryptor |
| 39 'encryptor', | 42 'encryptor', |
| 40 | 43 |
| 44 # Dependencies of json_schema |
| 45 'json_schema', |
| 46 |
| 41 # Dependencies of intercept_navigation_resource_throttle_unittest.cc | 47 # Dependencies of intercept_navigation_resource_throttle_unittest.cc |
| 42 '../content/content.gyp:test_support_content', | 48 '../content/content.gyp:test_support_content', |
| 43 '../skia/skia.gyp:skia', | 49 '../skia/skia.gyp:skia', |
| 44 'navigation_interception', | 50 'navigation_interception', |
| 45 | 51 |
| 46 # Dependencies of sessions | 52 # Dependencies of sessions |
| 47 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 53 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 48 'sessions', | 54 'sessions', |
| 49 'sessions_test_support', | 55 'sessions_test_support', |
| 50 | 56 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', | 139 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', |
| 134 }, | 140 }, |
| 135 'includes': [ '../build/apk_test.gypi' ], | 141 'includes': [ '../build/apk_test.gypi' ], |
| 136 }, | 142 }, |
| 137 ], | 143 ], |
| 138 }], | 144 }], |
| 139 ], | 145 ], |
| 140 }], | 146 }], |
| 141 ], | 147 ], |
| 142 } | 148 } |
| OLD | NEW |