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 'ui', |
11 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 13 '../base/base.gyp:test_support_base', |
12 '../skia/skia.gyp:skia', | 14 '../skia/skia.gyp:skia', |
13 '../testing/gtest.gyp:gtest', | 15 '../testing/gtest.gyp:gtest', |
14 ], | 16 ], |
15 'sources': [ | 17 'sources': [ |
| 18 'base/animation/animation_container_test_helper.cc', |
| 19 'base/animation/animation_container_test_helper.h', |
16 'base/test/cocoa_test_event_utils.h', | 20 'base/test/cocoa_test_event_utils.h', |
17 'base/test/cocoa_test_event_utils.mm', | 21 'base/test/cocoa_test_event_utils.mm', |
18 'base/test/ui_cocoa_test_helper.h', | 22 'base/test/ui_cocoa_test_helper.h', |
19 'base/test/ui_cocoa_test_helper.mm', | 23 'base/test/ui_cocoa_test_helper.mm', |
20 'base/test/dummy_input_method.cc', | 24 'base/test/dummy_input_method.cc', |
21 'base/test/dummy_input_method.h', | 25 'base/test/dummy_input_method.h', |
22 ], | 26 ], |
23 'include_dirs': [ | 27 'include_dirs': [ |
24 '../', | 28 '../', |
25 ], | 29 ], |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 'variables': { | 294 'variables': { |
291 'test_suite_name': 'ui_unittests', | 295 'test_suite_name': 'ui_unittests', |
292 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', | 296 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', |
293 }, | 297 }, |
294 'includes': [ '../build/apk_test.gypi' ], | 298 'includes': [ '../build/apk_test.gypi' ], |
295 }, | 299 }, |
296 ], | 300 ], |
297 }], | 301 }], |
298 ], | 302 ], |
299 } | 303 } |
OLD | NEW |