OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 # GN version: //ui/wm | 11 # GN version: //ui/wm |
12 'target_name': 'wm', | 12 'target_name': 'wm', |
13 'type': '<(component)', | 13 'type': '<(component)', |
14 'dependencies': [ | 14 'dependencies': [ |
15 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
16 '../../skia/skia.gyp:skia', | 16 '../../skia/skia.gyp:skia', |
17 '../aura/aura.gyp:aura', | 17 '../aura/aura.gyp:aura', |
18 '../compositor/compositor.gyp:compositor', | 18 '../compositor/compositor.gyp:compositor', |
19 '../events/devices/events_devices.gyp:events_devices', | 19 '../events/devices/events_devices.gyp:events_devices', |
20 '../events/events.gyp:events', | 20 '../events/events.gyp:events', |
21 '../events/events.gyp:events_base', | 21 '../events/events.gyp:events_base', |
22 '../events/platform/events_platform.gyp:events_platform', | 22 '../events/platform/events_platform.gyp:events_platform', |
23 '../gfx/gfx.gyp:gfx_geometry', | 23 '../gfx/gfx.gyp:gfx_geometry', |
24 '../gfx/gfx.gyp:gfx', | 24 '../gfx/gfx.gyp:gfx', |
25 '../resources/ui_resources.gyp:ui_resources', | 25 '../resources/ui_resources.gyp:ui_resources', |
26 '../base/ime/ui_base_ime.gyp:ui_base_ime', | |
27 '../base/ui_base.gyp:ui_base', | 26 '../base/ui_base.gyp:ui_base', |
28 ], | 27 ], |
29 'defines': [ | 28 'defines': [ |
30 'WM_IMPLEMENTATION', | 29 'WM_IMPLEMENTATION', |
31 ], | 30 ], |
32 'sources': [ | 31 'sources': [ |
33 # Note: sources list duplicated in GN build. | 32 # Note: sources list duplicated in GN build. |
34 'core/accelerator_delegate.h', | 33 'core/accelerator_delegate.h', |
35 'core/accelerator_filter.cc', | 34 'core/accelerator_filter.cc', |
36 'core/accelerator_filter.h', | 35 'core/accelerator_filter.h', |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 # GN version: //ui/wm:wm_unittests | 122 # GN version: //ui/wm:wm_unittests |
124 'target_name': 'wm_unittests', | 123 'target_name': 'wm_unittests', |
125 'type': 'executable', | 124 'type': 'executable', |
126 'dependencies': [ | 125 'dependencies': [ |
127 '../../base/base.gyp:base', | 126 '../../base/base.gyp:base', |
128 '../../base/base.gyp:test_support_base', | 127 '../../base/base.gyp:test_support_base', |
129 '../../skia/skia.gyp:skia', | 128 '../../skia/skia.gyp:skia', |
130 '../../testing/gtest.gyp:gtest', | 129 '../../testing/gtest.gyp:gtest', |
131 '../aura/aura.gyp:aura', | 130 '../aura/aura.gyp:aura', |
132 '../aura/aura.gyp:aura_test_support', | 131 '../aura/aura.gyp:aura_test_support', |
133 '../base/ime/ui_base_ime.gyp:ui_base_ime', | |
134 '../base/ui_base.gyp:ui_base', | 132 '../base/ui_base.gyp:ui_base', |
135 '../compositor/compositor.gyp:compositor', | 133 '../compositor/compositor.gyp:compositor', |
136 '../events/events.gyp:events', | 134 '../events/events.gyp:events', |
137 '../events/events.gyp:events_base', | 135 '../events/events.gyp:events_base', |
138 '../events/platform/events_platform.gyp:events_platform', | 136 '../events/platform/events_platform.gyp:events_platform', |
139 '../gfx/gfx.gyp:gfx', | 137 '../gfx/gfx.gyp:gfx', |
140 '../gfx/gfx.gyp:gfx_geometry', | 138 '../gfx/gfx.gyp:gfx_geometry', |
141 'wm', | 139 'wm', |
142 'wm_test_support', | 140 'wm_test_support', |
143 ], | 141 ], |
(...skipping 10 matching lines...) Expand all Loading... |
154 'core/shadow_unittest.cc', | 152 'core/shadow_unittest.cc', |
155 'core/transient_window_manager_unittest.cc', | 153 'core/transient_window_manager_unittest.cc', |
156 'core/transient_window_stacking_client_unittest.cc', | 154 'core/transient_window_stacking_client_unittest.cc', |
157 'core/visibility_controller_unittest.cc', | 155 'core/visibility_controller_unittest.cc', |
158 'core/window_animations_unittest.cc', | 156 'core/window_animations_unittest.cc', |
159 'core/window_util_unittest.cc', | 157 'core/window_util_unittest.cc', |
160 ], | 158 ], |
161 }, | 159 }, |
162 ], | 160 ], |
163 } | 161 } |
OLD | NEW |