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 'autofill/browser/android/test_auxiliary_profile_loader_android.cc', | |
Yaron
2013/03/16 00:15:30
Instead of re-listing files from the binary, just
| |
15 'autofill/browser/android/test_auxiliary_profile_loader_android.h', | |
16 'browser/android/auxiliary_profile_unittest_android.cc', | |
Yaron
2013/03/16 00:15:30
missing "autofill/" prefix. Is this test being bui
| |
14 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc', | 17 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc', |
15 'test/run_all_unittests.cc', | 18 'test/run_all_unittests.cc', |
16 'visitedlink/test/visitedlink_unittest.cc', | 19 'visitedlink/test/visitedlink_unittest.cc', |
17 ], | 20 ], |
18 'include_dirs': [ | 21 'include_dirs': [ |
19 '..', | 22 '..', |
20 ], | 23 ], |
21 'dependencies': [ | 24 'dependencies': [ |
22 '../base/base.gyp:test_support_base', | 25 '../base/base.gyp:test_support_base', |
23 '../testing/gmock.gyp:gmock', | 26 '../testing/gmock.gyp:gmock', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
66 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo nents_unittests<(SHARED_LIB_SUFFIX)', | 69 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo nents_unittests<(SHARED_LIB_SUFFIX)', |
67 }, | 70 }, |
68 'includes': [ '../build/apk_test.gypi' ], | 71 'includes': [ '../build/apk_test.gypi' ], |
69 }, | 72 }, |
70 ], | 73 ], |
71 }], | 74 }], |
72 ], | 75 ], |
73 }], | 76 }], |
74 ], | 77 ], |
75 } | 78 } |
OLD | NEW |