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 { |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 'core/easy_resize_window_targeter.h', | 53 'core/easy_resize_window_targeter.h', |
54 'core/focus_controller.cc', | 54 'core/focus_controller.cc', |
55 'core/focus_controller.h', | 55 'core/focus_controller.h', |
56 'core/focus_rules.h', | 56 'core/focus_rules.h', |
57 'core/image_grid.cc', | 57 'core/image_grid.cc', |
58 'core/image_grid.h', | 58 'core/image_grid.h', |
59 'core/masked_window_targeter.cc', | 59 'core/masked_window_targeter.cc', |
60 'core/masked_window_targeter.h', | 60 'core/masked_window_targeter.h', |
61 'core/native_cursor_manager.h', | 61 'core/native_cursor_manager.h', |
62 'core/native_cursor_manager_delegate.h', | 62 'core/native_cursor_manager_delegate.h', |
63 'core/nested_accelerator_controller.cc', | |
64 'core/nested_accelerator_controller.h', | |
65 'core/nested_accelerator_delegate.h', | |
66 'core/nested_accelerator_dispatcher.cc', | |
67 'core/nested_accelerator_dispatcher.h', | |
68 'core/nested_accelerator_dispatcher_linux.cc', | |
69 'core/nested_accelerator_dispatcher_win.cc', | |
70 'core/shadow.cc', | 63 'core/shadow.cc', |
71 'core/shadow.h', | 64 'core/shadow.h', |
72 'core/shadow_controller.cc', | 65 'core/shadow_controller.cc', |
73 'core/shadow_controller.h', | 66 'core/shadow_controller.h', |
74 'core/shadow_types.cc', | 67 'core/shadow_types.cc', |
75 'core/shadow_types.h', | 68 'core/shadow_types.h', |
76 'core/transient_window_controller.cc', | 69 'core/transient_window_controller.cc', |
77 'core/transient_window_controller.h', | 70 'core/transient_window_controller.h', |
78 'core/transient_window_manager.cc', | 71 'core/transient_window_manager.cc', |
79 'core/transient_window_manager.h', | 72 'core/transient_window_manager.h', |
(...skipping 13 matching lines...) Expand all Loading... |
93 'core/wm_state.cc', | 86 'core/wm_state.cc', |
94 'core/wm_state.h', | 87 'core/wm_state.h', |
95 'wm_export.h', | 88 'wm_export.h', |
96 ], | 89 ], |
97 'conditions': [ | 90 'conditions': [ |
98 ['use_x11==1', { | 91 ['use_x11==1', { |
99 'dependencies': [ | 92 'dependencies': [ |
100 '../../build/linux/system.gyp:x11', | 93 '../../build/linux/system.gyp:x11', |
101 ], | 94 ], |
102 }], | 95 }], |
103 ['OS=="android"', { | |
104 'sources!': [ | |
105 'core/nested_accelerator_controller.cc', | |
106 'core/nested_accelerator_controller.h', | |
107 'core/nested_accelerator_delegate.h', | |
108 'core/nested_accelerator_dispatcher.cc', | |
109 'core/nested_accelerator_dispatcher.h', | |
110 ], | |
111 }], | |
112 ], | 96 ], |
113 }, | 97 }, |
114 { | 98 { |
115 # GN version: //ui/wm:test_support | 99 # GN version: //ui/wm:test_support |
116 'target_name': 'wm_test_support', | 100 'target_name': 'wm_test_support', |
117 'type': 'static_library', | 101 'type': 'static_library', |
118 'dependencies': [ | 102 'dependencies': [ |
119 '../../skia/skia.gyp:skia', | 103 '../../skia/skia.gyp:skia', |
120 '../aura/aura.gyp:aura', | 104 '../aura/aura.gyp:aura', |
121 '../events/events.gyp:events', | 105 '../events/events.gyp:events', |
(...skipping 25 matching lines...) Expand all Loading... |
147 '../gfx/gfx.gyp:gfx_geometry', | 131 '../gfx/gfx.gyp:gfx_geometry', |
148 'wm', | 132 'wm', |
149 'wm_test_support', | 133 'wm_test_support', |
150 ], | 134 ], |
151 'sources': [ | 135 'sources': [ |
152 'core/capture_controller_unittest.cc', | 136 'core/capture_controller_unittest.cc', |
153 'core/compound_event_filter_unittest.cc', | 137 'core/compound_event_filter_unittest.cc', |
154 'core/cursor_manager_unittest.cc', | 138 'core/cursor_manager_unittest.cc', |
155 'core/focus_controller_unittest.cc', | 139 'core/focus_controller_unittest.cc', |
156 'core/image_grid_unittest.cc', | 140 'core/image_grid_unittest.cc', |
157 'core/nested_accelerator_controller_unittest.cc', | |
158 'core/shadow_controller_unittest.cc', | 141 'core/shadow_controller_unittest.cc', |
159 'core/shadow_unittest.cc', | 142 'core/shadow_unittest.cc', |
160 'core/transient_window_manager_unittest.cc', | 143 'core/transient_window_manager_unittest.cc', |
161 'core/transient_window_stacking_client_unittest.cc', | 144 'core/transient_window_stacking_client_unittest.cc', |
162 'core/visibility_controller_unittest.cc', | 145 'core/visibility_controller_unittest.cc', |
163 'core/window_animations_unittest.cc', | 146 'core/window_animations_unittest.cc', |
164 'core/window_util_unittest.cc', | 147 'core/window_util_unittest.cc', |
165 'test/run_all_unittests.cc', | 148 'test/run_all_unittests.cc', |
166 ], | 149 ], |
167 }, | 150 }, |
(...skipping 11 matching lines...) Expand all Loading... |
179 '../../build/isolate.gypi', | 162 '../../build/isolate.gypi', |
180 ], | 163 ], |
181 'sources': [ | 164 'sources': [ |
182 'wm_unittests.isolate', | 165 'wm_unittests.isolate', |
183 ], | 166 ], |
184 }, | 167 }, |
185 ], | 168 ], |
186 }], | 169 }], |
187 ], | 170 ], |
188 } | 171 } |
OLD | NEW |