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 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
6 'targets': [ | 9 'targets': [ |
7 { | 10 { |
8 'target_name': 'ui_test_support', | 11 'target_name': 'ui_test_support', |
9 'dependencies': [ | 12 'dependencies': [ |
10 '../base/base.gyp:base', | 13 '../base/base.gyp:base', |
11 '../skia/skia.gyp:skia', | 14 '../skia/skia.gyp:skia', |
12 '../testing/gtest.gyp:gtest', | 15 '../testing/gtest.gyp:gtest', |
13 'events/events.gyp:events', | 16 'events/events.gyp:events', |
14 'gfx/gfx.gyp:gfx', | 17 'gfx/gfx.gyp:gfx', |
15 ], | 18 ], |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 ], | 60 ], |
58 }], | 61 }], |
59 ], | 62 ], |
60 }, | 63 }, |
61 { | 64 { |
62 'target_name': 'run_ui_unittests', | 65 'target_name': 'run_ui_unittests', |
63 'type': 'static_library', | 66 'type': 'static_library', |
64 'dependencies': [ | 67 'dependencies': [ |
65 '../base/base.gyp:base', | 68 '../base/base.gyp:base', |
66 '../base/base.gyp:test_support_base', | 69 '../base/base.gyp:test_support_base', |
67 'ui', | 70 'ui.gyp:ui', |
68 ], | 71 ], |
69 'sources': [ | 72 'sources': [ |
70 'test/test_suite.cc', | 73 'test/test_suite.cc', |
71 'test/test_suite.h', | 74 'test/test_suite.h', |
72 'test/run_all_unittests.cc', | 75 'test/run_all_unittests.cc', |
73 ], | 76 ], |
74 }, | 77 }, |
75 { | 78 { |
76 'target_name': 'ui_unittests', | 79 'target_name': 'ui_unittests', |
77 'type': '<(gtest_target_type)', | 80 'type': '<(gtest_target_type)', |
78 'dependencies': [ | 81 'dependencies': [ |
79 '../base/base.gyp:base', | 82 '../base/base.gyp:base', |
80 '../base/base.gyp:test_support_base', | 83 '../base/base.gyp:test_support_base', |
81 '../skia/skia.gyp:skia', | 84 '../skia/skia.gyp:skia', |
82 '../testing/gmock.gyp:gmock', | 85 '../testing/gmock.gyp:gmock', |
83 '../testing/gtest.gyp:gtest', | 86 '../testing/gtest.gyp:gtest', |
84 '../third_party/icu/icu.gyp:icui18n', | 87 '../third_party/icu/icu.gyp:icui18n', |
85 '../third_party/icu/icu.gyp:icuuc', | 88 '../third_party/icu/icu.gyp:icuuc', |
86 '../third_party/libpng/libpng.gyp:libpng', | 89 '../third_party/libpng/libpng.gyp:libpng', |
87 '../url/url.gyp:url_lib', | 90 '../url/url.gyp:url_lib', |
88 'base/strings/ui_strings.gyp:ui_strings', | 91 'base/strings/ui_strings.gyp:ui_strings', |
89 'events/events.gyp:events', | 92 'events/events.gyp:events', |
90 'keycode_converter', | |
91 'run_ui_unittests', | 93 'run_ui_unittests', |
92 'shell_dialogs', | 94 'shell_dialogs/shell_dialogs.gyp:shell_dialogs', |
93 'ui', | 95 'ui.gyp:keycode_converter', |
94 'ui_resources', | 96 'ui.gyp:ui', |
| 97 'ui.gyp:ui_resources', |
95 'ui_test_support', | 98 'ui_test_support', |
96 ], | 99 ], |
97 # iOS uses a small subset of ui. common_sources are the only files that | 100 # iOS uses a small subset of ui. common_sources are the only files that |
98 # are built on iOS. | 101 # are built on iOS. |
99 'common_sources' : [ | 102 'common_sources' : [ |
100 'base/layout_unittest.cc', | 103 'base/layout_unittest.cc', |
101 'base/l10n/l10n_util_mac_unittest.mm', | 104 'base/l10n/l10n_util_mac_unittest.mm', |
102 'base/l10n/l10n_util_unittest.cc', | 105 'base/l10n/l10n_util_unittest.cc', |
103 'base/l10n/l10n_util_win_unittest.cc', | 106 'base/l10n/l10n_util_win_unittest.cc', |
104 'base/l10n/time_format_unittest.cc', | 107 'base/l10n/time_format_unittest.cc', |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 'variables': { | 376 'variables': { |
374 'test_suite_name': 'ui_unittests', | 377 'test_suite_name': 'ui_unittests', |
375 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', | 378 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', |
376 }, | 379 }, |
377 'includes': [ '../build/apk_test.gypi' ], | 380 'includes': [ '../build/apk_test.gypi' ], |
378 }, | 381 }, |
379 ], | 382 ], |
380 }], | 383 }], |
381 ], | 384 ], |
382 } | 385 } |
OLD | NEW |