| 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 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', | 14 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', |
| 15 'sessions/serialized_navigation_entry_unittest.cc', | 15 'sessions/serialized_navigation_entry_unittest.cc', |
| 16 'test/run_all_unittests.cc', | 16 'test/run_all_unittests.cc', |
| 17 'visitedlink/test/visitedlink_unittest.cc', | 17 'visitedlink/test/visitedlink_unittest.cc', |
| 18 'webdata/encryptor/encryptor_password_mac_unittest.cc', | 18 'webdata/encryptor/encryptor_password_mac_unittest.cc', |
| 19 'webdata/encryptor/encryptor_unittest.cc', | 19 'webdata/encryptor/encryptor_unittest.cc', |
| 20 'zip/zip_reader_unittest.cc', | |
| 21 'zip/zip_unittest.cc', | |
| 22 ], | 20 ], |
| 23 'include_dirs': [ | 21 'include_dirs': [ |
| 24 '..', | 22 '..', |
| 25 ], | 23 ], |
| 26 'dependencies': [ | 24 'dependencies': [ |
| 27 '../base/base.gyp:test_support_base', | 25 '../base/base.gyp:test_support_base', |
| 28 '../testing/gmock.gyp:gmock', | 26 '../testing/gmock.gyp:gmock', |
| 29 '../testing/gtest.gyp:gtest', | 27 '../testing/gtest.gyp:gtest', |
| 30 | 28 |
| 31 # Dependencies of auto_login_parser | 29 # Dependencies of auto_login_parser |
| 32 'auto_login_parser', | 30 'auto_login_parser', |
| 33 | 31 |
| 34 # Dependencies of encryptor | 32 # Dependencies of encryptor |
| 35 'encryptor', | 33 'encryptor', |
| 36 | 34 |
| 37 # Dependencies of intercept_navigation_resource_throttle_unittest.cc | 35 # Dependencies of intercept_navigation_resource_throttle_unittest.cc |
| 38 '../content/content.gyp:test_support_content', | 36 '../content/content.gyp:test_support_content', |
| 39 '../skia/skia.gyp:skia', | 37 '../skia/skia.gyp:skia', |
| 40 'navigation_interception', | 38 'navigation_interception', |
| 41 | 39 |
| 42 # Dependencies of sessions | 40 # Dependencies of sessions |
| 43 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 41 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 44 'sessions', | 42 'sessions', |
| 45 'sessions_test_support', | 43 'sessions_test_support', |
| 46 | 44 |
| 47 # Dependencies of visitedlink | 45 # Dependencies of visitedlink |
| 48 'visitedlink_browser', | 46 'visitedlink_browser', |
| 49 'visitedlink_renderer', | 47 'visitedlink_renderer', |
| 50 '../content/content_resources.gyp:content_resources', | 48 '../content/content_resources.gyp:content_resources', |
| 51 | |
| 52 # Dependencies of zip | |
| 53 'zip', | |
| 54 ], | 49 ], |
| 55 'conditions': [ | 50 'conditions': [ |
| 56 ['OS == "android" and gtest_target_type == "shared_library"', { | 51 ['OS == "android" and gtest_target_type == "shared_library"', { |
| 57 'dependencies': [ | 52 'dependencies': [ |
| 58 '../testing/android/native_test.gyp:native_test_native_code', | 53 '../testing/android/native_test.gyp:native_test_native_code', |
| 59 ] | 54 ] |
| 60 }], | 55 }], |
| 61 ['OS=="win" and win_use_allocator_shim==1', { | 56 ['OS=="win" and win_use_allocator_shim==1', { |
| 62 'dependencies': [ | 57 'dependencies': [ |
| 63 '../base/allocator/allocator.gyp:allocator', | 58 '../base/allocator/allocator.gyp:allocator', |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', | 109 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', |
| 115 }, | 110 }, |
| 116 'includes': [ '../build/apk_test.gypi' ], | 111 'includes': [ '../build/apk_test.gypi' ], |
| 117 }, | 112 }, |
| 118 ], | 113 ], |
| 119 }], | 114 }], |
| 120 ], | 115 ], |
| 121 }], | 116 }], |
| 122 ], | 117 ], |
| 123 } | 118 } |
| OLD | NEW |