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 'dependencies': [ | 9 'dependencies': [ |
10 '../base/base.gyp:base', | 10 '../base/base.gyp:base', |
11 '../skia/skia.gyp:skia', | 11 '../skia/skia.gyp:skia', |
12 '../testing/gtest.gyp:gtest', | 12 '../testing/gtest.gyp:gtest', |
| 13 'events/events.gyp:events', |
13 'gfx/gfx.gyp:gfx', | 14 'gfx/gfx.gyp:gfx', |
14 ], | 15 ], |
15 'sources': [ | 16 'sources': [ |
16 'base/test/cocoa_test_event_utils.h', | 17 'base/test/cocoa_test_event_utils.h', |
17 'base/test/cocoa_test_event_utils.mm', | 18 'base/test/cocoa_test_event_utils.mm', |
18 'base/test/ui_cocoa_test_helper.h', | 19 'base/test/ui_cocoa_test_helper.h', |
19 'base/test/ui_cocoa_test_helper.mm', | 20 'base/test/ui_cocoa_test_helper.mm', |
20 'base/test/ui_controls.h', | 21 'base/test/ui_controls.h', |
21 'base/test/ui_controls_aura.cc', | 22 'base/test/ui_controls_aura.cc', |
22 'base/test/ui_controls_gtk.cc', | 23 'base/test/ui_controls_gtk.cc', |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 '../base/base.gyp:base', | 77 '../base/base.gyp:base', |
77 '../base/base.gyp:test_support_base', | 78 '../base/base.gyp:test_support_base', |
78 '../skia/skia.gyp:skia', | 79 '../skia/skia.gyp:skia', |
79 '../testing/gmock.gyp:gmock', | 80 '../testing/gmock.gyp:gmock', |
80 '../testing/gtest.gyp:gtest', | 81 '../testing/gtest.gyp:gtest', |
81 '../third_party/icu/icu.gyp:icui18n', | 82 '../third_party/icu/icu.gyp:icui18n', |
82 '../third_party/icu/icu.gyp:icuuc', | 83 '../third_party/icu/icu.gyp:icuuc', |
83 '../third_party/libpng/libpng.gyp:libpng', | 84 '../third_party/libpng/libpng.gyp:libpng', |
84 '../url/url.gyp:url_lib', | 85 '../url/url.gyp:url_lib', |
85 'base/strings/ui_strings.gyp:ui_strings', | 86 'base/strings/ui_strings.gyp:ui_strings', |
| 87 'events/events.gyp:events', |
86 'keycode_converter', | 88 'keycode_converter', |
87 'run_ui_unittests', | 89 'run_ui_unittests', |
88 'shell_dialogs', | 90 'shell_dialogs', |
89 'ui', | 91 'ui', |
90 'ui_resources', | 92 'ui_resources', |
91 'ui_test_support', | 93 'ui_test_support', |
92 ], | 94 ], |
93 # iOS uses a small subset of ui. common_sources are the only files that | 95 # iOS uses a small subset of ui. common_sources are the only files that |
94 # are built on iOS. | 96 # are built on iOS. |
95 'common_sources' : [ | 97 'common_sources' : [ |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 'variables': { | 361 'variables': { |
360 'test_suite_name': 'ui_unittests', | 362 'test_suite_name': 'ui_unittests', |
361 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', | 363 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', |
362 }, | 364 }, |
363 'includes': [ '../build/apk_test.gypi' ], | 365 'includes': [ '../build/apk_test.gypi' ], |
364 }, | 366 }, |
365 ], | 367 ], |
366 }], | 368 }], |
367 ], | 369 ], |
368 } | 370 } |
OLD | NEW |