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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'ui_test_support', | 8 'target_name': 'ui_test_support', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
11 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
12 '../testing/gtest.gyp:gtest', | 12 '../testing/gtest.gyp:gtest', |
13 ], | 13 ], |
14 'sources': [ | 14 'sources': [ |
15 'base/test/cocoa_test_event_utils.h', | 15 'base/test/cocoa_test_event_utils.h', |
16 'base/test/cocoa_test_event_utils.mm', | 16 'base/test/cocoa_test_event_utils.mm', |
17 'base/test/ui_cocoa_test_helper.h', | 17 'base/test/ui_cocoa_test_helper.h', |
18 'base/test/ui_cocoa_test_helper.mm', | 18 'base/test/ui_cocoa_test_helper.mm', |
19 'base/test/dummy_input_method.cc', | 19 'base/test/dummy_input_method.cc', |
20 'base/test/dummy_input_method.h', | 20 'base/test/dummy_input_method.h', |
21 'base/win/mock_tsf_bridge.cc', | |
22 'base/win/mock_tsf_bridge.h', | |
21 ], | 23 ], |
22 'include_dirs': [ | 24 'include_dirs': [ |
23 '../', | 25 '../', |
24 ], | 26 ], |
25 'conditions': [ | 27 'conditions': [ |
26 ['OS!="ios"', { | 28 ['OS!="ios"', { |
27 'includes': [ 'base/ime/ime_test_support.gypi' ], | 29 'includes': [ 'base/ime/ime_test_support.gypi' ], |
28 }, { # OS=="ios" | 30 }, { # OS=="ios" |
29 # The cocoa files don't apply to iOS. | 31 # The cocoa files don't apply to iOS. |
30 'sources/': [['exclude', 'cocoa']], | 32 'sources/': [['exclude', 'cocoa']], |
31 }], | 33 }], |
32 ['chromeos==1', { | 34 ['chromeos==1', { |
33 'dependencies': [ | 35 'dependencies': [ |
34 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock', | 36 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock', |
35 '../skia/skia.gyp:skia', | 37 '../skia/skia.gyp:skia', |
36 ], | 38 ], |
37 }], | 39 }], |
40 ['OS!="win"', { | |
41 'sources!': [ | |
42 'base/win/mock_tsf_bridge.cc', | |
sky
2012/09/10 16:44:09
Aren't these automatically excluded since they hav
Seigo Nonaka
2012/09/10 19:04:10
Yes! thanks.
Fixed.
On 2012/09/10 16:44:09, sky wr
| |
43 'base/win/mock_tsf_bridge.h', | |
44 ] | |
45 }], | |
38 ], | 46 ], |
39 }, | 47 }, |
40 { | 48 { |
41 'target_name': 'ui_unittests', | 49 'target_name': 'ui_unittests', |
42 'type': '<(gtest_target_type)', | 50 'type': '<(gtest_target_type)', |
43 'dependencies': [ | 51 'dependencies': [ |
44 '../base/base.gyp:base', | 52 '../base/base.gyp:base', |
45 '../base/base.gyp:test_support_base', | 53 '../base/base.gyp:test_support_base', |
46 '../build/temp_gyp/googleurl.gyp:googleurl', | 54 '../build/temp_gyp/googleurl.gyp:googleurl', |
47 '../skia/skia.gyp:skia', | 55 '../skia/skia.gyp:skia', |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
264 'variables': { | 272 'variables': { |
265 'test_suite_name': 'ui_unittests', | 273 'test_suite_name': 'ui_unittests', |
266 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte sts<(SHARED_LIB_SUFFIX)', | 274 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte sts<(SHARED_LIB_SUFFIX)', |
267 }, | 275 }, |
268 'includes': [ '../build/apk_test.gypi' ], | 276 'includes': [ '../build/apk_test.gypi' ], |
269 }, | 277 }, |
270 ], | 278 ], |
271 }], | 279 }], |
272 ], | 280 ], |
273 } | 281 } |
OLD | NEW |