Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: components/components_tests.gypi

Issue 14021015: Move components/zip to third_party/zip (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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',
21 ], 19 ],
22 'include_dirs': [ 20 'include_dirs': [
23 '..', 21 '..',
24 ], 22 ],
25 'dependencies': [ 23 'dependencies': [
26 '../base/base.gyp:test_support_base', 24 '../base/base.gyp:test_support_base',
27 '../testing/gmock.gyp:gmock', 25 '../testing/gmock.gyp:gmock',
28 '../testing/gtest.gyp:gtest', 26 '../testing/gtest.gyp:gtest',
29 27
30 # Dependencies of auto_login_parser 28 # Dependencies of auto_login_parser
31 'auto_login_parser', 29 'auto_login_parser',
32 30
33 # Dependencies of encryptor 31 # Dependencies of encryptor
34 'encryptor', 32 'encryptor',
35 33
36 # Dependencies of intercept_navigation_resource_throttle_unittest.cc 34 # Dependencies of intercept_navigation_resource_throttle_unittest.cc
37 '../content/content.gyp:test_support_content', 35 '../content/content.gyp:test_support_content',
38 '../skia/skia.gyp:skia', 36 '../skia/skia.gyp:skia',
39 'navigation_interception', 37 'navigation_interception',
40 38
41 # Dependencies of visitedlink 39 # Dependencies of visitedlink
42 'visitedlink_browser', 40 'visitedlink_browser',
43 'visitedlink_renderer', 41 'visitedlink_renderer',
44 '../content/content_resources.gyp:content_resources', 42 '../content/content_resources.gyp:content_resources',
45
46 # Dependencies of zip
47 'zip',
48 ], 43 ],
49 'conditions': [ 44 'conditions': [
50 ['OS == "android" and gtest_target_type == "shared_library"', { 45 ['OS == "android" and gtest_target_type == "shared_library"', {
51 'dependencies': [ 46 'dependencies': [
52 '../testing/android/native_test.gyp:native_test_native_code', 47 '../testing/android/native_test.gyp:native_test_native_code',
53 ] 48 ]
54 }], 49 }],
55 ['OS=="win" and win_use_allocator_shim==1', { 50 ['OS=="win" and win_use_allocator_shim==1', {
56 'dependencies': [ 51 'dependencies': [
57 '../base/allocator/allocator.gyp:allocator', 52 '../base/allocator/allocator.gyp:allocator',
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo nents_unittests<(SHARED_LIB_SUFFIX)', 98 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo nents_unittests<(SHARED_LIB_SUFFIX)',
104 }, 99 },
105 'includes': [ '../build/apk_test.gypi' ], 100 'includes': [ '../build/apk_test.gypi' ],
106 }, 101 },
107 ], 102 ],
108 }], 103 }],
109 ], 104 ],
110 }], 105 }],
111 ], 106 ],
112 } 107 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698