| 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 'webdata/encryptor/encryptor_password_mac_unittest.cc', | 14 'webdata/encryptor/encryptor_password_mac_unittest.cc', |
| 15 'webdata/encryptor/encryptor_unittest.cc', | 15 'webdata/encryptor/encryptor_unittest.cc', |
| 16 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', | 16 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', |
| 17 'test/run_all_unittests.cc', | 17 'test/run_all_unittests.cc', |
| 18 'visitedlink/test/visitedlink_unittest.cc', | 18 'visitedlink/test/visitedlink_unittest.cc', |
| 19 'zip/zip_reader_unittest.cc', |
| 20 'zip/zip_unittest.cc', |
| 19 ], | 21 ], |
| 20 'include_dirs': [ | 22 'include_dirs': [ |
| 21 '..', | 23 '..', |
| 22 ], | 24 ], |
| 23 'dependencies': [ | 25 'dependencies': [ |
| 24 '../base/base.gyp:test_support_base', | 26 '../base/base.gyp:test_support_base', |
| 25 '../testing/gmock.gyp:gmock', | 27 '../testing/gmock.gyp:gmock', |
| 26 '../testing/gtest.gyp:gtest', | 28 '../testing/gtest.gyp:gtest', |
| 27 | 29 |
| 28 # Dependencies of auto_login_parser | 30 # Dependencies of auto_login_parser |
| 29 'auto_login_parser', | 31 'auto_login_parser', |
| 30 | 32 |
| 31 # Dependencies of encryptor | 33 # Dependencies of encryptor |
| 32 'encryptor', | 34 'encryptor', |
| 33 | 35 |
| 34 # Dependencies of intercept_navigation_resource_throttle_unittest.cc | 36 # Dependencies of intercept_navigation_resource_throttle_unittest.cc |
| 35 '../content/content.gyp:test_support_content', | 37 '../content/content.gyp:test_support_content', |
| 36 '../skia/skia.gyp:skia', | 38 '../skia/skia.gyp:skia', |
| 37 'navigation_interception', | 39 'navigation_interception', |
| 38 | 40 |
| 39 # Dependencies of visitedlink | 41 # Dependencies of visitedlink |
| 40 'visitedlink_browser', | 42 'visitedlink_browser', |
| 41 'visitedlink_renderer', | 43 'visitedlink_renderer', |
| 42 '../content/content_resources.gyp:content_resources', | 44 '../content/content_resources.gyp:content_resources', |
| 45 |
| 46 # Dependencies of zip |
| 47 'zip', |
| 43 ], | 48 ], |
| 44 'conditions': [ | 49 'conditions': [ |
| 45 ['OS == "android" and gtest_target_type == "shared_library"', { | 50 ['OS == "android" and gtest_target_type == "shared_library"', { |
| 46 'dependencies': [ | 51 'dependencies': [ |
| 47 '../testing/android/native_test.gyp:native_test_native_code', | 52 '../testing/android/native_test.gyp:native_test_native_code', |
| 48 ] | 53 ] |
| 49 }], | 54 }], |
| 50 ['OS=="win" and win_use_allocator_shim==1', { | 55 ['OS=="win" and win_use_allocator_shim==1', { |
| 51 'dependencies': [ | 56 'dependencies': [ |
| 52 '../base/allocator/allocator.gyp:allocator', | 57 '../base/allocator/allocator.gyp:allocator', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 71 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', | 76 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', |
| 72 }, | 77 }, |
| 73 'includes': [ '../build/apk_test.gypi' ], | 78 'includes': [ '../build/apk_test.gypi' ], |
| 74 }, | 79 }, |
| 75 ], | 80 ], |
| 76 }], | 81 }], |
| 77 ], | 82 ], |
| 78 }], | 83 }], |
| 79 ], | 84 ], |
| 80 } | 85 } |
| OLD | NEW |