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 '../skia/skia.gyp:skia', |
12 '../testing/gtest.gyp:gtest', | 13 '../testing/gtest.gyp:gtest', |
13 ], | 14 ], |
14 'sources': [ | 15 'sources': [ |
15 'base/test/cocoa_test_event_utils.h', | 16 'base/test/cocoa_test_event_utils.h', |
16 'base/test/cocoa_test_event_utils.mm', | 17 'base/test/cocoa_test_event_utils.mm', |
17 'base/test/ui_cocoa_test_helper.h', | 18 'base/test/ui_cocoa_test_helper.h', |
18 'base/test/ui_cocoa_test_helper.mm', | 19 'base/test/ui_cocoa_test_helper.mm', |
19 'base/test/dummy_input_method.cc', | 20 'base/test/dummy_input_method.cc', |
20 'base/test/dummy_input_method.h', | 21 'base/test/dummy_input_method.h', |
| 22 'base/win/mock_tsf_bridge.cc', |
| 23 'base/win/mock_tsf_bridge.h', |
21 ], | 24 ], |
22 'include_dirs': [ | 25 'include_dirs': [ |
23 '../', | 26 '../', |
24 ], | 27 ], |
25 'conditions': [ | 28 'conditions': [ |
26 ['OS!="ios"', { | 29 ['OS!="ios"', { |
27 'includes': [ 'base/ime/ime_test_support.gypi' ], | 30 'includes': [ 'base/ime/ime_test_support.gypi' ], |
28 }, { # OS=="ios" | 31 }, { # OS=="ios" |
29 # The cocoa files don't apply to iOS. | 32 # The cocoa files don't apply to iOS. |
30 'sources/': [['exclude', 'cocoa']], | 33 'sources/': [['exclude', 'cocoa']], |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 'variables': { | 272 'variables': { |
270 'test_suite_name': 'ui_unittests', | 273 'test_suite_name': 'ui_unittests', |
271 '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)', |
272 }, | 275 }, |
273 'includes': [ '../build/apk_test.gypi' ], | 276 'includes': [ '../build/apk_test.gypi' ], |
274 }, | 277 }, |
275 ], | 278 ], |
276 }], | 279 }], |
277 ], | 280 ], |
278 } | 281 } |
OLD | NEW |