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 'target_name': 'wm', | 11 'target_name': 'wm', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
15 '../../skia/skia.gyp:skia', | 15 '../../skia/skia.gyp:skia', |
16 '../aura/aura.gyp:aura', | 16 '../aura/aura.gyp:aura', |
17 '../compositor/compositor.gyp:compositor', | 17 '../compositor/compositor.gyp:compositor', |
18 '../events/events.gyp:events', | 18 '../events/events.gyp:events', |
19 '../events/events.gyp:events_base', | 19 '../events/events.gyp:events_base', |
20 '../gfx/gfx.gyp:gfx_geometry', | 20 '../gfx/gfx.gyp:gfx_geometry', |
21 '../gfx/gfx.gyp:gfx', | 21 '../gfx/gfx.gyp:gfx', |
22 '../resources/ui_resources.gyp:ui_resources', | 22 '../resources/ui_resources.gyp:ui_resources', |
23 '../base/ui_base.gyp:ui_base', | 23 '../base/ui_base.gyp:ui_base', |
24 ], | 24 ], |
25 'defines': [ | 25 'defines': [ |
26 'WM_IMPLEMENTATION', | 26 'WM_IMPLEMENTATION', |
27 ], | 27 ], |
28 'sources': [ | 28 'sources': [ |
29 'core/nested_accelerator_dispatcher_linux.cc', | |
30 'core/nested_accelerator_dispatcher_win.cc', | |
31 'core/nested_accelerator_dispatcher.cc', | |
32 'core/nested_accelerator_dispatcher.h', | |
33 'core/nested_accelerator_delegate.h', | |
34 'core/nested_accelerator_controller.cc', | |
35 'core/nested_accelerator_controller.h', | |
36 'core/base_focus_rules.h', | |
37 'core/base_focus_rules.cc', | 29 'core/base_focus_rules.cc', |
38 'core/base_focus_rules.h', | 30 'core/base_focus_rules.h', |
39 'core/capture_controller.cc', | 31 'core/capture_controller.cc', |
40 'core/capture_controller.h', | 32 'core/capture_controller.h', |
41 'core/compound_event_filter.cc', | 33 'core/compound_event_filter.cc', |
42 'core/compound_event_filter.h', | 34 'core/compound_event_filter.h', |
43 'core/cursor_manager.cc', | 35 'core/cursor_manager.cc', |
44 'core/cursor_manager.h', | 36 'core/cursor_manager.h', |
45 'core/default_activation_client.cc', | 37 'core/default_activation_client.cc', |
46 'core/default_activation_client.h', | 38 'core/default_activation_client.h', |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 'wm', | 114 'wm', |
123 'wm_test_support', | 115 'wm_test_support', |
124 ], | 116 ], |
125 'sources': [ | 117 'sources': [ |
126 'test/run_all_unittests.cc', | 118 'test/run_all_unittests.cc', |
127 'core/compound_event_filter_unittest.cc', | 119 'core/compound_event_filter_unittest.cc', |
128 'core/cursor_manager_unittest.cc', | 120 'core/cursor_manager_unittest.cc', |
129 'core/focus_controller_unittest.cc', | 121 'core/focus_controller_unittest.cc', |
130 'core/input_method_event_filter_unittest.cc', | 122 'core/input_method_event_filter_unittest.cc', |
131 'core/image_grid_unittest.cc', | 123 'core/image_grid_unittest.cc', |
132 'core/nested_accelerator_controller_unittest.cc', | |
133 'core/shadow_controller_unittest.cc', | 124 'core/shadow_controller_unittest.cc', |
134 'core/transient_window_manager_unittest.cc', | 125 'core/transient_window_manager_unittest.cc', |
135 'core/transient_window_stacking_client_unittest.cc', | 126 'core/transient_window_stacking_client_unittest.cc', |
136 'core/user_activity_detector_unittest.cc', | 127 'core/user_activity_detector_unittest.cc', |
137 'core/visibility_controller_unittest.cc', | 128 'core/visibility_controller_unittest.cc', |
138 'core/window_animations_unittest.cc', | 129 'core/window_animations_unittest.cc', |
139 'core/window_util_unittest.cc', | 130 'core/window_util_unittest.cc', |
140 ], | 131 ], |
141 }, | 132 }, |
142 ], | 133 ], |
143 } | 134 } |
OLD | NEW |