Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Side by Side Diff: ash/BUILD.gn

Issue 2322883003: Nukes ash.gyp (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ash/ash.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//ui/base/ui_features.gni") 8 import("//ui/base/ui_features.gni")
9 9
10 assert(use_aura) 10 assert(use_aura)
11 assert(enable_hidpi) 11 assert(enable_hidpi)
12 12
13 gypi_values = exec_script("//build/gypi_to_gn.py",
14 [ rebase_path("ash.gyp") ],
15 "scope",
16 [ "ash.gyp" ])
17
18 component("ash") { 13 component("ash") {
19 sources = gypi_values.ash_sources 14 sources = [
15 "accelerators/accelerator_commands_aura.cc",
16 "accelerators/accelerator_commands_aura.h",
17 "accelerators/accelerator_controller_delegate_aura.cc",
18 "accelerators/accelerator_controller_delegate_aura.h",
19 "accelerators/accelerator_delegate.cc",
20 "accelerators/accelerator_delegate.h",
21 "accelerators/key_hold_detector.cc",
22 "accelerators/key_hold_detector.h",
23 "accelerators/magnifier_key_scroller.cc",
24 "accelerators/magnifier_key_scroller.h",
25 "accelerators/spoken_feedback_toggler.cc",
26 "accelerators/spoken_feedback_toggler.h",
27 "app_list/app_list_presenter_delegate.cc",
28 "app_list/app_list_presenter_delegate.h",
29 "app_list/app_list_presenter_delegate_factory.cc",
30 "app_list/app_list_presenter_delegate_factory.h",
31 "ash_export.h",
32 "ash_touch_exploration_manager_chromeos.cc",
33 "ash_touch_exploration_manager_chromeos.h",
34 "aura/aura_layout_manager_adapter.cc",
35 "aura/aura_layout_manager_adapter.h",
36 "aura/pointer_watcher_adapter.cc",
37 "aura/pointer_watcher_adapter.h",
38 "aura/wm_lookup_aura.cc",
39 "aura/wm_lookup_aura.h",
40 "aura/wm_root_window_controller_aura.cc",
41 "aura/wm_root_window_controller_aura.h",
42 "aura/wm_shelf_aura.cc",
43 "aura/wm_shelf_aura.h",
44 "aura/wm_shell_aura.cc",
45 "aura/wm_shell_aura.h",
46 "aura/wm_window_aura.cc",
47 "aura/wm_window_aura.h",
48 "autoclick/autoclick_controller.cc",
49 "autoclick/autoclick_controller.h",
50 "cancel_mode.cc",
51 "cancel_mode.h",
52 "common/accelerators/accelerator_commands.cc",
53 "common/accelerators/accelerator_commands.h",
54 "common/accelerators/accelerator_controller.cc",
55 "common/accelerators/accelerator_controller.h",
56 "common/accelerators/accelerator_controller_delegate.h",
57 "common/accelerators/accelerator_router.cc",
58 "common/accelerators/accelerator_router.h",
59 "common/accelerators/accelerator_table.cc",
60 "common/accelerators/accelerator_table.h",
61 "common/accelerators/ash_focus_manager_factory.cc",
62 "common/accelerators/ash_focus_manager_factory.h",
63 "common/accelerators/debug_commands.cc",
64 "common/accelerators/debug_commands.h",
65 "common/accelerators/exit_warning_handler.cc",
66 "common/accelerators/exit_warning_handler.h",
67 "common/accessibility_delegate.h",
68 "common/accessibility_types.h",
69 "common/ash_constants.cc",
70 "common/ash_constants.h",
71 "common/ash_layout_constants.cc",
72 "common/ash_layout_constants.h",
73 "common/ash_switches.cc",
74 "common/ash_switches.h",
75 "common/cast_config_delegate.cc",
76 "common/cast_config_delegate.h",
77 "common/default_accessibility_delegate.cc",
78 "common/default_accessibility_delegate.h",
79 "common/drag_drop/drag_image_view.cc",
80 "common/drag_drop/drag_image_view.h",
81 "common/focus_cycler.cc",
82 "common/focus_cycler.h",
83 "common/frame/caption_buttons/caption_button_types.h",
84 "common/frame/caption_buttons/frame_caption_button.cc",
85 "common/frame/caption_buttons/frame_caption_button.h",
86 "common/frame/caption_buttons/frame_caption_button_container_view.cc",
87 "common/frame/caption_buttons/frame_caption_button_container_view.h",
88 "common/frame/caption_buttons/frame_size_button.cc",
89 "common/frame/caption_buttons/frame_size_button.h",
90 "common/frame/caption_buttons/frame_size_button_delegate.h",
91 "common/frame/custom_frame_view_ash.cc",
92 "common/frame/custom_frame_view_ash.h",
93 "common/frame/default_header_painter.cc",
94 "common/frame/default_header_painter.h",
95 "common/frame/frame_border_hit_test.cc",
96 "common/frame/frame_border_hit_test.h",
97 "common/frame/header_painter.h",
98 "common/frame/header_painter_util.cc",
99 "common/frame/header_painter_util.h",
100 "common/frame/header_view.cc",
101 "common/frame/header_view.h",
102 "common/gpu_support.h",
103 "common/gpu_support_stub.cc",
104 "common/gpu_support_stub.h",
105 "common/keyboard/keyboard_ui.cc",
106 "common/keyboard/keyboard_ui.h",
107 "common/keyboard/keyboard_ui_observer.h",
108 "common/login_status.h",
109 "common/material_design/material_design_controller.cc",
110 "common/material_design/material_design_controller.h",
111 "common/metrics/gesture_action_type.h",
112 "common/metrics/user_metrics_action.h",
113 "common/multi_profile_uma.cc",
114 "common/multi_profile_uma.h",
115 "common/palette_delegate.h",
116 "common/popup_message.cc",
117 "common/popup_message.h",
118 "common/scoped_root_window_for_new_windows.cc",
119 "common/scoped_root_window_for_new_windows.h",
120 "common/session/session_state_delegate.cc",
121 "common/session/session_state_delegate.h",
122 "common/session/session_state_observer.cc",
123 "common/session/session_state_observer.h",
124 "common/session/session_types.h",
125 "common/shelf/app_list_button.cc",
126 "common/shelf/app_list_button.h",
127 "common/shelf/app_list_shelf_item_delegate.cc",
128 "common/shelf/app_list_shelf_item_delegate.h",
129 "common/shelf/ink_drop_button_listener.h",
130 "common/shelf/overflow_bubble.cc",
131 "common/shelf/overflow_bubble.h",
132 "common/shelf/overflow_bubble_view.cc",
133 "common/shelf/overflow_bubble_view.h",
134 "common/shelf/overflow_button.cc",
135 "common/shelf/overflow_button.h",
136 "common/shelf/shelf_alignment_menu.cc",
137 "common/shelf/shelf_alignment_menu.h",
138 "common/shelf/shelf_background_animator.cc",
139 "common/shelf/shelf_background_animator.h",
140 "common/shelf/shelf_background_animator_observer.h",
141 "common/shelf/shelf_button.cc",
142 "common/shelf/shelf_button.h",
143 "common/shelf/shelf_button_pressed_metric_tracker.cc",
144 "common/shelf/shelf_button_pressed_metric_tracker.h",
145 "common/shelf/shelf_constants.cc",
146 "common/shelf/shelf_constants.h",
147 "common/shelf/shelf_delegate.h",
148 "common/shelf/shelf_item_delegate.h",
149 "common/shelf/shelf_item_types.cc",
150 "common/shelf/shelf_item_types.h",
151 "common/shelf/shelf_layout_manager.cc",
152 "common/shelf/shelf_layout_manager.h",
153 "common/shelf/shelf_layout_manager_observer.h",
154 "common/shelf/shelf_locking_manager.cc",
155 "common/shelf/shelf_locking_manager.h",
156 "common/shelf/shelf_menu_model.h",
157 "common/shelf/shelf_model.cc",
158 "common/shelf/shelf_model.h",
159 "common/shelf/shelf_model_observer.h",
160 "common/shelf/shelf_tooltip_manager.cc",
161 "common/shelf/shelf_tooltip_manager.h",
162 "common/shelf/shelf_types.h",
163 "common/shelf/shelf_view.cc",
164 "common/shelf/shelf_view.h",
165 "common/shelf/shelf_widget.cc",
166 "common/shelf/shelf_widget.h",
167 "common/shelf/shelf_window_watcher.cc",
168 "common/shelf/shelf_window_watcher.h",
169 "common/shelf/shelf_window_watcher_item_delegate.cc",
170 "common/shelf/shelf_window_watcher_item_delegate.h",
171 "common/shelf/wm_shelf.cc",
172 "common/shelf/wm_shelf.h",
173 "common/shelf/wm_shelf_observer.h",
174 "common/shelf/wm_shelf_util.cc",
175 "common/shelf/wm_shelf_util.h",
176 "common/shell_delegate.h",
177 "common/shell_window_ids.cc",
178 "common/shell_window_ids.h",
179 "common/system/accessibility_observer.h",
180 "common/system/audio/audio_observer.h",
181 "common/system/audio/tray_audio.cc",
182 "common/system/audio/tray_audio.h",
183 "common/system/audio/tray_audio_delegate.h",
184 "common/system/audio/volume_view.cc",
185 "common/system/audio/volume_view.h",
186 "common/system/brightness_control_delegate.h",
187 "common/system/cast/tray_cast.cc",
188 "common/system/cast/tray_cast.h",
189 "common/system/chromeos/audio/audio_detailed_view.cc",
190 "common/system/chromeos/audio/audio_detailed_view.h",
191 "common/system/chromeos/audio/tray_audio_chromeos.cc",
192 "common/system/chromeos/audio/tray_audio_chromeos.h",
193 "common/system/chromeos/audio/tray_audio_delegate_chromeos.cc",
194 "common/system/chromeos/audio/tray_audio_delegate_chromeos.h",
195 "common/system/chromeos/bluetooth/bluetooth_notification_controller.cc",
196 "common/system/chromeos/bluetooth/bluetooth_notification_controller.h",
197 "common/system/chromeos/bluetooth/bluetooth_observer.h",
198 "common/system/chromeos/bluetooth/tray_bluetooth.cc",
199 "common/system/chromeos/bluetooth/tray_bluetooth.h",
200 "common/system/chromeos/brightness/brightness_controller_chromeos.cc",
201 "common/system/chromeos/brightness/brightness_controller_chromeos.h",
202 "common/system/chromeos/brightness/tray_brightness.cc",
203 "common/system/chromeos/brightness/tray_brightness.h",
204 "common/system/chromeos/devicetype_utils.cc",
205 "common/system/chromeos/devicetype_utils.h",
206 "common/system/chromeos/enterprise/enterprise_domain_observer.h",
207 "common/system/chromeos/enterprise/tray_enterprise.cc",
208 "common/system/chromeos/enterprise/tray_enterprise.h",
209 "common/system/chromeos/ime_menu/ime_list_view.cc",
210 "common/system/chromeos/ime_menu/ime_list_view.h",
211 "common/system/chromeos/ime_menu/ime_menu_tray.cc",
212 "common/system/chromeos/ime_menu/ime_menu_tray.h",
213 "common/system/chromeos/keyboard_brightness_controller.cc",
214 "common/system/chromeos/keyboard_brightness_controller.h",
215 "common/system/chromeos/media_security/media_capture_observer.h",
216 "common/system/chromeos/media_security/multi_profile_media_tray_item.cc",
217 "common/system/chromeos/media_security/multi_profile_media_tray_item.h",
218 "common/system/chromeos/network/network_detailed_view.h",
219 "common/system/chromeos/network/network_observer.h",
220 "common/system/chromeos/network/network_portal_detector_observer.h",
221 "common/system/chromeos/network/network_state_list_detailed_view.cc",
222 "common/system/chromeos/network/network_state_list_detailed_view.h",
223 "common/system/chromeos/network/tray_network.cc",
224 "common/system/chromeos/network/tray_network.h",
225 "common/system/chromeos/network/tray_network_state_observer.cc",
226 "common/system/chromeos/network/tray_network_state_observer.h",
227 "common/system/chromeos/network/tray_sms.cc",
228 "common/system/chromeos/network/tray_sms.h",
229 "common/system/chromeos/network/tray_vpn.cc",
230 "common/system/chromeos/network/tray_vpn.h",
231 "common/system/chromeos/network/vpn_delegate.cc",
232 "common/system/chromeos/network/vpn_delegate.h",
233 "common/system/chromeos/network/vpn_list_view.cc",
234 "common/system/chromeos/network/vpn_list_view.h",
235 "common/system/chromeos/palette/common_palette_tool.cc",
236 "common/system/chromeos/palette/common_palette_tool.h",
237 "common/system/chromeos/palette/palette_ids.cc",
238 "common/system/chromeos/palette/palette_ids.h",
239 "common/system/chromeos/palette/palette_tool.cc",
240 "common/system/chromeos/palette/palette_tool.h",
241 "common/system/chromeos/palette/palette_tool_manager.cc",
242 "common/system/chromeos/palette/palette_tool_manager.h",
243 "common/system/chromeos/palette/palette_tray.cc",
244 "common/system/chromeos/palette/palette_tray.h",
245 "common/system/chromeos/palette/palette_utils.cc",
246 "common/system/chromeos/palette/palette_utils.h",
247 "common/system/chromeos/palette/tools/capture_region_mode.cc",
248 "common/system/chromeos/palette/tools/capture_region_mode.h",
249 "common/system/chromeos/palette/tools/capture_screen_action.cc",
250 "common/system/chromeos/palette/tools/capture_screen_action.h",
251 "common/system/chromeos/palette/tools/create_note_action.cc",
252 "common/system/chromeos/palette/tools/create_note_action.h",
253 "common/system/chromeos/palette/tools/laser_pointer_mode.cc",
254 "common/system/chromeos/palette/tools/laser_pointer_mode.h",
255 "common/system/chromeos/palette/tools/laser_pointer_points.cc",
256 "common/system/chromeos/palette/tools/laser_pointer_points.h",
257 "common/system/chromeos/palette/tools/laser_pointer_view.cc",
258 "common/system/chromeos/palette/tools/laser_pointer_view.h",
259 "common/system/chromeos/palette/tools/magnifier_mode.cc",
260 "common/system/chromeos/palette/tools/magnifier_mode.h",
261 "common/system/chromeos/power/battery_notification.cc",
262 "common/system/chromeos/power/battery_notification.h",
263 "common/system/chromeos/power/dual_role_notification.cc",
264 "common/system/chromeos/power/dual_role_notification.h",
265 "common/system/chromeos/power/power_status.cc",
266 "common/system/chromeos/power/power_status.h",
267 "common/system/chromeos/power/power_status_view.cc",
268 "common/system/chromeos/power/power_status_view.h",
269 "common/system/chromeos/power/tray_power.cc",
270 "common/system/chromeos/power/tray_power.h",
271 "common/system/chromeos/screen_security/screen_capture_observer.h",
272 "common/system/chromeos/screen_security/screen_capture_tray_item.cc",
273 "common/system/chromeos/screen_security/screen_capture_tray_item.h",
274 "common/system/chromeos/screen_security/screen_share_observer.h",
275 "common/system/chromeos/screen_security/screen_share_tray_item.cc",
276 "common/system/chromeos/screen_security/screen_share_tray_item.h",
277 "common/system/chromeos/screen_security/screen_tray_item.cc",
278 "common/system/chromeos/screen_security/screen_tray_item.h",
279 "common/system/chromeos/session/last_window_closed_observer.h",
280 "common/system/chromeos/session/logout_button_observer.h",
281 "common/system/chromeos/session/logout_button_tray.cc",
282 "common/system/chromeos/session/logout_button_tray.h",
283 "common/system/chromeos/session/logout_confirmation_controller.cc",
284 "common/system/chromeos/session/logout_confirmation_controller.h",
285 "common/system/chromeos/session/logout_confirmation_dialog.cc",
286 "common/system/chromeos/session/logout_confirmation_dialog.h",
287 "common/system/chromeos/session/session_length_limit_observer.h",
288 "common/system/chromeos/session/tray_session_length_limit.cc",
289 "common/system/chromeos/session/tray_session_length_limit.h",
290 "common/system/chromeos/settings/tray_settings.cc",
291 "common/system/chromeos/settings/tray_settings.h",
292 "common/system/chromeos/shutdown_policy_observer.h",
293 "common/system/chromeos/supervised/custodian_info_tray_observer.h",
294 "common/system/chromeos/supervised/tray_supervised_user.cc",
295 "common/system/chromeos/supervised/tray_supervised_user.h",
296 "common/system/chromeos/system_clock_observer.cc",
297 "common/system/chromeos/system_clock_observer.h",
298 "common/system/chromeos/tray_caps_lock.cc",
299 "common/system/chromeos/tray_caps_lock.h",
300 "common/system/chromeos/tray_tracing.cc",
301 "common/system/chromeos/tray_tracing.h",
302 "common/system/chromeos/virtual_keyboard/virtual_keyboard_observer.h",
303 "common/system/chromeos/virtual_keyboard/virtual_keyboard_tray.cc",
304 "common/system/chromeos/virtual_keyboard/virtual_keyboard_tray.h",
305 "common/system/date/clock_observer.h",
306 "common/system/date/date_default_view.cc",
307 "common/system/date/date_default_view.h",
308 "common/system/date/date_view.cc",
309 "common/system/date/date_view.h",
310 "common/system/date/tray_date.cc",
311 "common/system/date/tray_date.h",
312 "common/system/ime/ime_observer.h",
313 "common/system/ime/tray_ime_chromeos.cc",
314 "common/system/ime/tray_ime_chromeos.h",
315 "common/system/keyboard_brightness_control_delegate.h",
316 "common/system/locale/locale_notification_controller.cc",
317 "common/system/locale/locale_notification_controller.h",
318 "common/system/locale/locale_observer.h",
319 "common/system/networking_config_delegate.cc",
320 "common/system/networking_config_delegate.h",
321 "common/system/overview/overview_button_tray.cc",
322 "common/system/overview/overview_button_tray.h",
323 "common/system/status_area_layout_manager.cc",
324 "common/system/status_area_layout_manager.h",
325 "common/system/status_area_widget.cc",
326 "common/system/status_area_widget.h",
327 "common/system/status_area_widget_delegate.cc",
328 "common/system/status_area_widget_delegate.h",
329 "common/system/system_notifier.cc",
330 "common/system/system_notifier.h",
331 "common/system/toast/toast_data.cc",
332 "common/system/toast/toast_data.h",
333 "common/system/toast/toast_manager.cc",
334 "common/system/toast/toast_manager.h",
335 "common/system/toast/toast_overlay.cc",
336 "common/system/toast/toast_overlay.h",
337 "common/system/tray/actionable_view.cc",
338 "common/system/tray/actionable_view.h",
339 "common/system/tray/default_system_tray_delegate.cc",
340 "common/system/tray/default_system_tray_delegate.h",
341 "common/system/tray/fixed_sized_image_view.cc",
342 "common/system/tray/fixed_sized_image_view.h",
343 "common/system/tray/fixed_sized_scroll_view.cc",
344 "common/system/tray/fixed_sized_scroll_view.h",
345 "common/system/tray/hover_highlight_view.cc",
346 "common/system/tray/hover_highlight_view.h",
347 "common/system/tray/ime_info.cc",
348 "common/system/tray/ime_info.h",
349 "common/system/tray/label_tray_view.cc",
350 "common/system/tray/label_tray_view.h",
351 "common/system/tray/special_popup_row.cc",
352 "common/system/tray/special_popup_row.h",
353 "common/system/tray/system_tray.cc",
354 "common/system/tray/system_tray.h",
355 "common/system/tray/system_tray_bubble.cc",
356 "common/system/tray/system_tray_bubble.h",
357 "common/system/tray/system_tray_delegate.cc",
358 "common/system/tray/system_tray_delegate.h",
359 "common/system/tray/system_tray_item.cc",
360 "common/system/tray/system_tray_item.h",
361 "common/system/tray/system_tray_notifier.cc",
362 "common/system/tray/system_tray_notifier.h",
363 "common/system/tray/throbber_view.cc",
364 "common/system/tray/throbber_view.h",
365 "common/system/tray/tray_background_view.cc",
366 "common/system/tray/tray_background_view.h",
367 "common/system/tray/tray_bubble_wrapper.cc",
368 "common/system/tray/tray_bubble_wrapper.h",
369 "common/system/tray/tray_constants.cc",
370 "common/system/tray/tray_constants.h",
371 "common/system/tray/tray_details_view.cc",
372 "common/system/tray/tray_details_view.h",
373 "common/system/tray/tray_event_filter.cc",
374 "common/system/tray/tray_event_filter.h",
375 "common/system/tray/tray_image_item.cc",
376 "common/system/tray/tray_image_item.h",
377 "common/system/tray/tray_item_more.cc",
378 "common/system/tray/tray_item_more.h",
379 "common/system/tray/tray_item_view.cc",
380 "common/system/tray/tray_item_view.h",
381 "common/system/tray/tray_notification_view.cc",
382 "common/system/tray/tray_notification_view.h",
383 "common/system/tray/tray_popup_header_button.cc",
384 "common/system/tray/tray_popup_header_button.h",
385 "common/system/tray/tray_popup_item_container.cc",
386 "common/system/tray/tray_popup_item_container.h",
387 "common/system/tray/tray_popup_label_button.cc",
388 "common/system/tray/tray_popup_label_button.h",
389 "common/system/tray/tray_popup_label_button_border.cc",
390 "common/system/tray/tray_popup_label_button_border.h",
391 "common/system/tray/tray_utils.cc",
392 "common/system/tray/tray_utils.h",
393 "common/system/tray/view_click_listener.h",
394 "common/system/tray_accessibility.cc",
395 "common/system/tray_accessibility.h",
396 "common/system/update/tray_update.cc",
397 "common/system/update/tray_update.h",
398 "common/system/update/update_observer.h",
399 "common/system/user/button_from_view.cc",
400 "common/system/user/button_from_view.h",
401 "common/system/user/login_status.cc",
402 "common/system/user/login_status.h",
403 "common/system/user/rounded_image_view.cc",
404 "common/system/user/rounded_image_view.h",
405 "common/system/user/tray_user.cc",
406 "common/system/user/tray_user.h",
407 "common/system/user/tray_user_separator.cc",
408 "common/system/user/tray_user_separator.h",
409 "common/system/user/user_card_view.cc",
410 "common/system/user/user_card_view.h",
411 "common/system/user/user_observer.h",
412 "common/system/user/user_view.cc",
413 "common/system/user/user_view.h",
414 "common/system/volume_control_delegate.h",
415 "common/system/web_notification/ash_popup_alignment_delegate.cc",
416 "common/system/web_notification/ash_popup_alignment_delegate.h",
417 "common/system/web_notification/web_notification_tray.cc",
418 "common/system/web_notification/web_notification_tray.h",
419 "common/wallpaper/wallpaper_delegate.h",
420 "common/wm/always_on_top_controller.cc",
421 "common/wm/always_on_top_controller.h",
422 "common/wm/background_animator.cc",
423 "common/wm/background_animator.h",
424 "common/wm/container_finder.cc",
425 "common/wm/container_finder.h",
426 "common/wm/default_state.cc",
427 "common/wm/default_state.h",
428 "common/wm/default_window_resizer.cc",
429 "common/wm/default_window_resizer.h",
430 "common/wm/dock/docked_window_layout_manager.cc",
431 "common/wm/dock/docked_window_layout_manager.h",
432 "common/wm/dock/docked_window_layout_manager_observer.h",
433 "common/wm/dock/docked_window_resizer.cc",
434 "common/wm/dock/docked_window_resizer.h",
435 "common/wm/drag_details.cc",
436 "common/wm/drag_details.h",
437 "common/wm/focus_rules.cc",
438 "common/wm/focus_rules.h",
439 "common/wm/forwarding_layer_delegate.cc",
440 "common/wm/forwarding_layer_delegate.h",
441 "common/wm/fullscreen_window_finder.cc",
442 "common/wm/fullscreen_window_finder.h",
443 "common/wm/immersive_context_ash.cc",
444 "common/wm/immersive_context_ash.h",
445 "common/wm/lock_state_observer.h",
446 "common/wm/maximize_mode/maximize_mode_controller.cc",
447 "common/wm/maximize_mode/maximize_mode_controller.h",
448 "common/wm/maximize_mode/maximize_mode_event_handler.cc",
449 "common/wm/maximize_mode/maximize_mode_event_handler.h",
450 "common/wm/maximize_mode/maximize_mode_window_manager.cc",
451 "common/wm/maximize_mode/maximize_mode_window_manager.h",
452 "common/wm/maximize_mode/maximize_mode_window_state.cc",
453 "common/wm/maximize_mode/maximize_mode_window_state.h",
454 "common/wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard.h",
455 "common/wm/maximize_mode/workspace_backdrop_delegate.cc",
456 "common/wm/maximize_mode/workspace_backdrop_delegate.h",
457 "common/wm/mru_window_tracker.cc",
458 "common/wm/mru_window_tracker.h",
459 "common/wm/overview/cleanup_animation_observer.cc",
460 "common/wm/overview/cleanup_animation_observer.h",
461 "common/wm/overview/overview_animation_type.h",
462 "common/wm/overview/scoped_overview_animation_settings.h",
463 "common/wm/overview/scoped_overview_animation_settings_factory.cc",
464 "common/wm/overview/scoped_overview_animation_settings_factory.h",
465 "common/wm/overview/scoped_transform_overview_window.cc",
466 "common/wm/overview/scoped_transform_overview_window.h",
467 "common/wm/overview/window_grid.cc",
468 "common/wm/overview/window_grid.h",
469 "common/wm/overview/window_selector.cc",
470 "common/wm/overview/window_selector.h",
471 "common/wm/overview/window_selector_controller.cc",
472 "common/wm/overview/window_selector_controller.h",
473 "common/wm/overview/window_selector_item.cc",
474 "common/wm/overview/window_selector_item.h",
475 "common/wm/panels/panel_layout_manager.cc",
476 "common/wm/panels/panel_layout_manager.h",
477 "common/wm/panels/panel_window_resizer.cc",
478 "common/wm/panels/panel_window_resizer.h",
479 "common/wm/root_window_finder.cc",
480 "common/wm/root_window_finder.h",
481 "common/wm/root_window_layout_manager.cc",
482 "common/wm/root_window_layout_manager.h",
483 "common/wm/switchable_windows.cc",
484 "common/wm/switchable_windows.h",
485 "common/wm/window_animation_types.h",
486 "common/wm/window_cycle_controller.cc",
487 "common/wm/window_cycle_controller.h",
488 "common/wm/window_cycle_event_filter.h",
489 "common/wm/window_cycle_list.cc",
490 "common/wm/window_cycle_list.h",
491 "common/wm/window_parenting_utils.cc",
492 "common/wm/window_parenting_utils.h",
493 "common/wm/window_positioner.cc",
494 "common/wm/window_positioner.h",
495 "common/wm/window_positioning_utils.cc",
496 "common/wm/window_positioning_utils.h",
497 "common/wm/window_resizer.cc",
498 "common/wm/window_resizer.h",
499 "common/wm/window_state.cc",
500 "common/wm/window_state.h",
501 "common/wm/window_state_delegate.cc",
502 "common/wm/window_state_delegate.h",
503 "common/wm/window_state_observer.h",
504 "common/wm/window_state_util.cc",
505 "common/wm/window_state_util.h",
506 "common/wm/wm_event.cc",
507 "common/wm/wm_event.h",
508 "common/wm/wm_screen_util.cc",
509 "common/wm/wm_screen_util.h",
510 "common/wm/wm_snap_to_pixel_layout_manager.cc",
511 "common/wm/wm_snap_to_pixel_layout_manager.h",
512 "common/wm/wm_toplevel_window_event_handler.cc",
513 "common/wm/wm_toplevel_window_event_handler.h",
514 "common/wm/wm_types.cc",
515 "common/wm/wm_types.h",
516 "common/wm/wm_window_animations.cc",
517 "common/wm/wm_window_animations.h",
518 "common/wm/workspace/magnetism_matcher.cc",
519 "common/wm/workspace/magnetism_matcher.h",
520 "common/wm/workspace/multi_window_resize_controller.cc",
521 "common/wm/workspace/multi_window_resize_controller.h",
522 "common/wm/workspace/phantom_window_controller.cc",
523 "common/wm/workspace/phantom_window_controller.h",
524 "common/wm/workspace/two_step_edge_cycler.cc",
525 "common/wm/workspace/two_step_edge_cycler.h",
526 "common/wm/workspace/workspace_event_handler.cc",
527 "common/wm/workspace/workspace_event_handler.h",
528 "common/wm/workspace/workspace_layout_manager.cc",
529 "common/wm/workspace/workspace_layout_manager.h",
530 "common/wm/workspace/workspace_layout_manager_backdrop_delegate.h",
531 "common/wm/workspace/workspace_types.h",
532 "common/wm/workspace/workspace_window_resizer.cc",
533 "common/wm/workspace/workspace_window_resizer.h",
534 "common/wm/workspace_controller.cc",
535 "common/wm/workspace_controller.h",
536 "common/wm_activation_observer.h",
537 "common/wm_display_observer.h",
538 "common/wm_layout_manager.h",
539 "common/wm_lookup.cc",
540 "common/wm_lookup.h",
541 "common/wm_root_window_controller.cc",
542 "common/wm_root_window_controller.h",
543 "common/wm_shell.cc",
544 "common/wm_shell.h",
545 "common/wm_transient_window_observer.h",
546 "common/wm_window.h",
547 "common/wm_window_observer.h",
548 "common/wm_window_property.h",
549 "common/wm_window_tracker.h",
550 "debug.cc",
551 "debug.h",
552 "default_wallpaper_delegate.cc",
553 "default_wallpaper_delegate.h",
554 "display/cursor_window_controller.cc",
555 "display/cursor_window_controller.h",
556 "display/display_animator.h",
557 "display/display_animator_chromeos.cc",
558 "display/display_animator_chromeos.h",
559 "display/display_change_observer_chromeos.cc",
560 "display/display_change_observer_chromeos.h",
561 "display/display_color_manager_chromeos.cc",
562 "display/display_color_manager_chromeos.h",
563 "display/display_configuration_controller.cc",
564 "display/display_configuration_controller.h",
565 "display/display_error_observer_chromeos.cc",
566 "display/display_error_observer_chromeos.h",
567 "display/display_manager.cc",
568 "display/display_manager.h",
569 "display/display_pref_util.h",
570 "display/display_util.cc",
571 "display/display_util.h",
572 "display/event_transformation_handler.cc",
573 "display/event_transformation_handler.h",
574 "display/extended_mouse_warp_controller.cc",
575 "display/extended_mouse_warp_controller.h",
576 "display/json_converter.cc",
577 "display/json_converter.h",
578 "display/mirror_window_controller.cc",
579 "display/mirror_window_controller.h",
580 "display/mouse_cursor_event_filter.cc",
581 "display/mouse_cursor_event_filter.h",
582 "display/mouse_warp_controller.h",
583 "display/null_mouse_warp_controller.cc",
584 "display/null_mouse_warp_controller.h",
585 "display/projecting_observer_chromeos.cc",
586 "display/projecting_observer_chromeos.h",
587 "display/resolution_notification_controller.cc",
588 "display/resolution_notification_controller.h",
589 "display/root_window_transformers.cc",
590 "display/root_window_transformers.h",
591 "display/screen_ash.cc",
592 "display/screen_ash.h",
593 "display/screen_orientation_controller_chromeos.cc",
594 "display/screen_orientation_controller_chromeos.h",
595 "display/screen_position_controller.cc",
596 "display/screen_position_controller.h",
597 "display/shared_display_edge_indicator.cc",
598 "display/shared_display_edge_indicator.h",
599 "display/unified_mouse_warp_controller.cc",
600 "display/unified_mouse_warp_controller.h",
601 "display/window_tree_host_manager.cc",
602 "display/window_tree_host_manager.h",
603 "drag_drop/drag_drop_controller.cc",
604 "drag_drop/drag_drop_controller.h",
605 "drag_drop/drag_drop_tracker.cc",
606 "drag_drop/drag_drop_tracker.h",
607 "first_run/desktop_cleaner.cc",
608 "first_run/desktop_cleaner.h",
609 "first_run/first_run_helper.cc",
610 "first_run/first_run_helper.h",
611 "first_run/first_run_helper_impl.cc",
612 "first_run/first_run_helper_impl.h",
613 "high_contrast/high_contrast_controller.cc",
614 "high_contrast/high_contrast_controller.h",
615 "host/ash_window_tree_host.cc",
616 "host/ash_window_tree_host.h",
617 "host/ash_window_tree_host_init_params.cc",
618 "host/ash_window_tree_host_init_params.h",
619 "host/ash_window_tree_host_platform.cc",
620 "host/ash_window_tree_host_platform.h",
621 "host/ash_window_tree_host_unified.cc",
622 "host/ash_window_tree_host_unified.h",
623 "host/ash_window_tree_host_win.cc",
624 "host/ash_window_tree_host_win.h",
625 "host/ash_window_tree_host_x11.cc",
626 "host/ash_window_tree_host_x11.h",
627 "host/root_window_transformer.h",
628 "host/transformer_helper.cc",
629 "host/transformer_helper.h",
630 "ime/input_method_event_handler.cc",
631 "ime/input_method_event_handler.h",
632 "link_handler_model.cc",
633 "link_handler_model.h",
634 "link_handler_model_factory.cc",
635 "link_handler_model_factory.h",
636 "magnifier/magnification_controller.cc",
637 "magnifier/magnification_controller.h",
638 "magnifier/partial_magnification_controller.cc",
639 "magnifier/partial_magnification_controller.h",
640 "metrics/desktop_task_switch_metric_recorder.cc",
641 "metrics/desktop_task_switch_metric_recorder.h",
642 "metrics/task_switch_metrics_recorder.cc",
643 "metrics/task_switch_metrics_recorder.h",
644 "metrics/task_switch_time_tracker.cc",
645 "metrics/task_switch_time_tracker.h",
646 "metrics/user_metrics_recorder.cc",
647 "metrics/user_metrics_recorder.h",
648 "root_window_controller.cc",
649 "root_window_controller.h",
650 "root_window_settings.cc",
651 "root_window_settings.h",
652 "rotator/screen_rotation_animation.cc",
653 "rotator/screen_rotation_animation.h",
654 "rotator/screen_rotation_animator.cc",
655 "rotator/screen_rotation_animator.h",
656 "rotator/window_rotation.cc",
657 "rotator/window_rotation.h",
658 "screen_util.cc",
659 "screen_util.h",
660 "screenshot_delegate.h",
661 "shared/immersive_context.cc",
662 "shared/immersive_context.h",
663 "shared/immersive_focus_watcher.h",
664 "shared/immersive_fullscreen_controller.cc",
665 "shared/immersive_fullscreen_controller.h",
666 "shared/immersive_fullscreen_controller_delegate.h",
667 "shared/immersive_gesture_handler.h",
668 "shared/immersive_handler_factory.cc",
669 "shared/immersive_handler_factory.h",
670 "shared/immersive_revealed_lock.cc",
671 "shared/immersive_revealed_lock.h",
672 "shelf/dimmer_view.cc",
673 "shelf/dimmer_view.h",
674 "shelf/shelf_bezel_event_handler.cc",
675 "shelf/shelf_bezel_event_handler.h",
676 "shelf/shelf_util.cc",
677 "shelf/shelf_util.h",
678 "shelf/shelf_window_targeter.cc",
679 "shelf/shelf_window_targeter.h",
680 "shell.cc",
681 "shell.h",
682 "shell_init_params.cc",
683 "shell_init_params.h",
684 "snap_to_pixel_layout_manager.cc",
685 "snap_to_pixel_layout_manager.h",
686 "sticky_keys/sticky_keys_controller.cc",
687 "sticky_keys/sticky_keys_controller.h",
688 "sticky_keys/sticky_keys_overlay.cc",
689 "sticky_keys/sticky_keys_overlay.h",
690 "sticky_keys/sticky_keys_state.h",
691 "system/chromeos/power/power_event_observer.cc",
692 "system/chromeos/power/power_event_observer.h",
693 "system/chromeos/power/video_activity_notifier.cc",
694 "system/chromeos/power/video_activity_notifier.h",
695 "system/chromeos/rotation/tray_rotation_lock.cc",
696 "system/chromeos/rotation/tray_rotation_lock.h",
697 "system/chromeos/screen_layout_observer.cc",
698 "system/chromeos/screen_layout_observer.h",
699 "touch/touch_hud_debug.cc",
700 "touch/touch_hud_debug.h",
701 "touch/touch_hud_projection.cc",
702 "touch/touch_hud_projection.h",
703 "touch/touch_observer_hud.cc",
704 "touch/touch_observer_hud.h",
705 "touch/touch_transformer_controller.cc",
706 "touch/touch_transformer_controller.h",
707 "touch/touch_uma.cc",
708 "touch/touch_uma.h",
709 "touch/touchscreen_util.cc",
710 "touch/touchscreen_util.h",
711 "utility/screenshot_controller.cc",
712 "utility/screenshot_controller.h",
713 "virtual_keyboard_controller.cc",
714 "virtual_keyboard_controller.h",
715 "wallpaper/wallpaper_controller.cc",
716 "wallpaper/wallpaper_controller.h",
717 "wallpaper/wallpaper_controller_observer.h",
718 "wallpaper/wallpaper_view.cc",
719 "wallpaper/wallpaper_view.h",
720 "wallpaper/wallpaper_widget_controller.cc",
721 "wallpaper/wallpaper_widget_controller.h",
722 "wm/ash_focus_rules.cc",
723 "wm/ash_focus_rules.h",
724 "wm/ash_native_cursor_manager.cc",
725 "wm/ash_native_cursor_manager.h",
726 "wm/boot_splash_screen_chromeos.cc",
727 "wm/boot_splash_screen_chromeos.h",
728 "wm/cursor_manager_chromeos.cc",
729 "wm/cursor_manager_chromeos.h",
730 "wm/dim_window.cc",
731 "wm/dim_window.h",
732 "wm/drag_window_controller.cc",
733 "wm/drag_window_controller.h",
734 "wm/drag_window_resizer.cc",
735 "wm/drag_window_resizer.h",
736 "wm/event_client_impl.cc",
737 "wm/event_client_impl.h",
738 "wm/gestures/overview_gesture_handler.cc",
739 "wm/gestures/overview_gesture_handler.h",
740 "wm/immersive_focus_watcher_aura.cc",
741 "wm/immersive_focus_watcher_aura.h",
742 "wm/immersive_gesture_handler_aura.cc",
743 "wm/immersive_gesture_handler_aura.h",
744 "wm/immersive_handler_factory_ash.cc",
745 "wm/immersive_handler_factory_ash.h",
746 "wm/lock_layout_manager.cc",
747 "wm/lock_layout_manager.h",
748 "wm/lock_state_controller.cc",
749 "wm/lock_state_controller.h",
750 "wm/lock_window_state.cc",
751 "wm/lock_window_state.h",
752 "wm/maximize_mode/maximize_mode_event_handler_aura.cc",
753 "wm/maximize_mode/maximize_mode_event_handler_aura.h",
754 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.cc",
755 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.h",
756 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_x11.cc",
757 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_x11.h",
758 "wm/overlay_event_filter.cc",
759 "wm/overlay_event_filter.h",
760 "wm/overview/scoped_overview_animation_settings_aura.cc",
761 "wm/overview/scoped_overview_animation_settings_aura.h",
762 "wm/overview/scoped_overview_animation_settings_factory_aura.cc",
763 "wm/overview/scoped_overview_animation_settings_factory_aura.h",
764 "wm/panels/attached_panel_window_targeter.cc",
765 "wm/panels/attached_panel_window_targeter.h",
766 "wm/panels/panel_frame_view.cc",
767 "wm/panels/panel_frame_view.h",
768 "wm/panels/panel_window_event_handler.cc",
769 "wm/panels/panel_window_event_handler.h",
770 "wm/power_button_controller.cc",
771 "wm/power_button_controller.h",
772 "wm/resize_handle_window_targeter.cc",
773 "wm/resize_handle_window_targeter.h",
774 "wm/resize_shadow.cc",
775 "wm/resize_shadow.h",
776 "wm/resize_shadow_controller.cc",
777 "wm/resize_shadow_controller.h",
778 "wm/screen_dimmer.cc",
779 "wm/screen_dimmer.h",
780 "wm/screen_pinning_controller.cc",
781 "wm/screen_pinning_controller.h",
782 "wm/session_state_animator.cc",
783 "wm/session_state_animator.h",
784 "wm/session_state_animator_impl.cc",
785 "wm/session_state_animator_impl.h",
786 "wm/stacking_controller.cc",
787 "wm/stacking_controller.h",
788 "wm/stylus_metrics_recorder.cc",
789 "wm/stylus_metrics_recorder.h",
790 "wm/system_gesture_event_filter.cc",
791 "wm/system_gesture_event_filter.h",
792 "wm/system_modal_container_event_filter.cc",
793 "wm/system_modal_container_event_filter.h",
794 "wm/system_modal_container_event_filter_delegate.h",
795 "wm/system_modal_container_layout_manager.cc",
796 "wm/system_modal_container_layout_manager.h",
797 "wm/system_wallpaper_controller.cc",
798 "wm/system_wallpaper_controller.h",
799 "wm/toplevel_window_event_handler.cc",
800 "wm/toplevel_window_event_handler.h",
801 "wm/video_detector.cc",
802 "wm/video_detector.h",
803 "wm/window_animations.cc",
804 "wm/window_animations.h",
805 "wm/window_cycle_event_filter_aura.cc",
806 "wm/window_cycle_event_filter_aura.h",
807 "wm/window_mirror_view.cc",
808 "wm/window_mirror_view.h",
809 "wm/window_properties.cc",
810 "wm/window_properties.h",
811 "wm/window_state_aura.cc",
812 "wm/window_state_aura.h",
813 "wm/window_util.cc",
814 "wm/window_util.h",
815 "wm/workspace/workspace_event_handler_aura.cc",
816 "wm/workspace/workspace_event_handler_aura.h",
817 ]
20 818
21 configs += [ "//build/config:precompiled_headers" ] 819 configs += [ "//build/config:precompiled_headers" ]
22 defines = [ "ASH_IMPLEMENTATION" ] 820 defines = [ "ASH_IMPLEMENTATION" ]
23 821
24 public_deps = [ 822 public_deps = [
25 "//ash/common/strings", 823 "//ash/common/strings",
26 "//ash/resources", 824 "//ash/resources",
27 "//ash/resources/vector_icons", 825 "//ash/resources/vector_icons",
28 ] 826 ]
29 deps = [ 827 deps = [
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_x11.h", 895 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_x11.h",
98 ] 896 ]
99 } 897 }
100 898
101 if (use_ozone) { 899 if (use_ozone) {
102 deps += [ 900 deps += [
103 "//ui/events:dom_keycode_converter", 901 "//ui/events:dom_keycode_converter",
104 "//ui/events/ozone:events_ozone", 902 "//ui/events/ozone:events_ozone",
105 "//ui/ozone", 903 "//ui/ozone",
106 ] 904 ]
905 } else {
906 sources -= [
907 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.cc",
908 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.h",
909 ]
107 } 910 }
108 911
109 if (is_chromeos) { 912 if (is_chromeos) {
110 deps += [ 913 deps += [
111 "//chromeos", 914 "//chromeos",
112 "//chromeos:power_manager_proto", 915 "//chromeos:power_manager_proto",
113 "//components/quirks", 916 "//components/quirks",
114 "//device/bluetooth", 917 "//device/bluetooth",
115 918
116 # TODO(msw): Remove this; only ash_with_content should depend on webkit. 919 # TODO(msw): Remove this; only ash_with_content should depend on webkit.
(...skipping 22 matching lines...) Expand all
139 "touch/touch_transformer_controller.h", 942 "touch/touch_transformer_controller.h",
140 "touch/touchscreen_util.cc", 943 "touch/touchscreen_util.cc",
141 "touch/touchscreen_util.h", 944 "touch/touchscreen_util.h",
142 "virtual_keyboard_controller.cc", 945 "virtual_keyboard_controller.cc",
143 "virtual_keyboard_controller.h", 946 "virtual_keyboard_controller.h",
144 "wm/stylus_metrics_recorder.cc", 947 "wm/stylus_metrics_recorder.cc",
145 "wm/stylus_metrics_recorder.h", 948 "wm/stylus_metrics_recorder.h",
146 ] 949 ]
147 } 950 }
148 951
149 if (!use_ozone) {
150 sources -= [
151 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.cc",
152 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.h",
153 ]
154 }
155
156 # Usage of content should be in ash_content_unittests. 952 # Usage of content should be in ash_content_unittests.
157 assert_no_deps = [ "//content/*" ] 953 assert_no_deps = [ "//content/*" ]
158 } 954 }
159 955
160 component("ash_with_content") { 956 component("ash_with_content") {
161 sources = gypi_values.ash_with_content_sources 957 sources = [
958 "content/ash_with_content_export.h",
959 "content/gpu_support_impl.cc",
960 "content/gpu_support_impl.h",
961 "content/keyboard_overlay/keyboard_overlay_delegate.cc",
962 "content/keyboard_overlay/keyboard_overlay_delegate.h",
963 "content/keyboard_overlay/keyboard_overlay_view.cc",
964 "content/keyboard_overlay/keyboard_overlay_view.h",
965 "content/screen_orientation_delegate_chromeos.cc",
966 "content/screen_orientation_delegate_chromeos.h",
967 "content/shell_content_state.cc",
968 "content/shell_content_state.h",
969 ]
162 970
163 defines = [ "ASH_WITH_CONTENT_IMPLEMENTATION" ] 971 defines = [ "ASH_WITH_CONTENT_IMPLEMENTATION" ]
164 972
165 public_deps = [ 973 public_deps = [
166 ":ash", 974 ":ash",
167 ] 975 ]
168 deps = [ 976 deps = [
169 "//base", 977 "//base",
170 "//base/third_party/dynamic_annotations", 978 "//base/third_party/dynamic_annotations",
171 "//content/public/browser", 979 "//content/public/browser",
(...skipping 17 matching lines...) Expand all
189 } 997 }
190 998
191 # Internal target consumed by |test_support_with_content| and 999 # Internal target consumed by |test_support_with_content| and
192 # |test_support_without_content|. This target contains all the test support 1000 # |test_support_without_content|. This target contains all the test support
193 # files, with the exception of an implementation of AshTestEnvironment. 1001 # files, with the exception of an implementation of AshTestEnvironment.
194 # Consumers of ash should use one of |test_support_with_content| or 1002 # Consumers of ash should use one of |test_support_with_content| or
195 # |test_support_without_content|. 1003 # |test_support_without_content|.
196 static_library("test_support_common") { 1004 static_library("test_support_common") {
197 testonly = true 1005 testonly = true
198 visibility = [ ":*" ] 1006 visibility = [ ":*" ]
199 sources = gypi_values.ash_test_support_sources 1007 sources = [
1008 "common/test/material_design_controller_test_api.cc",
1009 "common/test/material_design_controller_test_api.h",
1010 "common/test/test_palette_delegate.cc",
1011 "common/test/test_palette_delegate.h",
1012 "common/test/test_volume_control_delegate.cc",
1013 "common/test/test_volume_control_delegate.h",
1014 "shell/toplevel_window.cc",
1015 "shell/toplevel_window.h",
1016 "test/ash_md_test_base.cc",
1017 "test/ash_md_test_base.h",
1018 "test/ash_test_base.cc",
1019 "test/ash_test_base.h",
1020 "test/ash_test_environment.h",
1021 "test/ash_test_helper.cc",
1022 "test/ash_test_helper.h",
1023 "test/ash_test_views_delegate.cc",
1024 "test/ash_test_views_delegate.h",
1025 "test/child_modal_window.cc",
1026 "test/child_modal_window.h",
1027 "test/cursor_manager_test_api.cc",
1028 "test/cursor_manager_test_api.h",
1029 "test/display_manager_test_api.cc",
1030 "test/display_manager_test_api.h",
1031 "test/immersive_fullscreen_controller_test_api.cc",
1032 "test/immersive_fullscreen_controller_test_api.h",
1033 "test/mirror_window_test_api.cc",
1034 "test/mirror_window_test_api.h",
1035 "test/overflow_bubble_view_test_api.cc",
1036 "test/overflow_bubble_view_test_api.h",
1037 "test/shelf_button_pressed_metric_tracker_test_api.cc",
1038 "test/shelf_button_pressed_metric_tracker_test_api.h",
1039 "test/shelf_view_test_api.cc",
1040 "test/shelf_view_test_api.h",
1041 "test/shell_test_api.cc",
1042 "test/shell_test_api.h",
1043 "test/status_area_widget_test_helper.cc",
1044 "test/status_area_widget_test_helper.h",
1045 "test/task_switch_time_tracker_test_api.cc",
1046 "test/task_switch_time_tracker_test_api.h",
1047 "test/test_activation_delegate.cc",
1048 "test/test_activation_delegate.h",
1049 "test/test_keyboard_ui.cc",
1050 "test/test_keyboard_ui.h",
1051 "test/test_lock_state_controller_delegate.cc",
1052 "test/test_lock_state_controller_delegate.h",
1053 "test/test_overlay_delegate.cc",
1054 "test/test_overlay_delegate.h",
1055 "test/test_screenshot_delegate.cc",
1056 "test/test_screenshot_delegate.h",
1057 "test/test_session_state_animator.cc",
1058 "test/test_session_state_animator.h",
1059 "test/test_session_state_delegate.cc",
1060 "test/test_session_state_delegate.h",
1061 "test/test_shelf_delegate.cc",
1062 "test/test_shelf_delegate.h",
1063 "test/test_shelf_item_delegate.cc",
1064 "test/test_shelf_item_delegate.h",
1065 "test/test_shell_delegate.cc",
1066 "test/test_shell_delegate.h",
1067 "test/test_suite.cc",
1068 "test/test_suite.h",
1069 "test/test_suite_init.h",
1070 "test/test_suite_init.mm",
1071 "test/test_system_tray_delegate.cc",
1072 "test/test_system_tray_delegate.h",
1073 "test/test_system_tray_item.cc",
1074 "test/test_system_tray_item.h",
1075 "test/test_wallpaper_delegate.cc",
1076 "test/test_wallpaper_delegate.h",
1077 "test/tray_cast_test_api.cc",
1078 "test/tray_cast_test_api.h",
1079 "test/ui_controls_factory_ash.cc",
1080 "test/ui_controls_factory_ash.h",
1081 "test/user_metrics_recorder_test_api.cc",
1082 "test/user_metrics_recorder_test_api.h",
1083 ]
200 configs += [ "//build/config:precompiled_headers" ] 1084 configs += [ "//build/config:precompiled_headers" ]
201 1085
202 public_deps = [ 1086 public_deps = [
203 ":ash", 1087 ":ash",
204 ] 1088 ]
205 deps = [ 1089 deps = [
206 "//ash/resources", 1090 "//ash/resources",
207 "//base:i18n", 1091 "//base:i18n",
208 "//base/test:test_support", 1092 "//base/test:test_support",
209 "//components/signin/core/account_id", 1093 "//components/signin/core/account_id",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 1143
260 deps = [ 1144 deps = [
261 "//base", 1145 "//base",
262 "//base/test:test_support", 1146 "//base/test:test_support",
263 "//skia", 1147 "//skia",
264 ] 1148 ]
265 } 1149 }
266 1150
267 static_library("test_support_with_content") { 1151 static_library("test_support_with_content") {
268 testonly = true 1152 testonly = true
269 sources = gypi_values.ash_test_support_with_content_sources 1153 sources = [
270 sources += [
271 "test/ash_test_environment_content.cc", 1154 "test/ash_test_environment_content.cc",
272 "test/ash_test_environment_content.h", 1155 "test/ash_test_environment_content.h",
1156 "test/content/test_shell_content_state.cc",
1157 "test/content/test_shell_content_state.h",
273 ] 1158 ]
274 configs += [ "//build/config:precompiled_headers" ] 1159 configs += [ "//build/config:precompiled_headers" ]
275 1160
276 public_deps = [ 1161 public_deps = [
277 ":ash_with_content", 1162 ":ash_with_content",
278 ":test_support_common", 1163 ":test_support_common",
279 "//content/public/browser", 1164 "//content/public/browser",
280 "//content/test:test_support", 1165 "//content/test:test_support",
281 "//skia", 1166 "//skia",
282 ] 1167 ]
(...skipping 17 matching lines...) Expand all
300 "//skia", 1185 "//skia",
301 "//testing/gtest", 1186 "//testing/gtest",
302 "//ui/aura", 1187 "//ui/aura",
303 "//ui/base", 1188 "//ui/base",
304 "//ui/gl:test_support", 1189 "//ui/gl:test_support",
305 ] 1190 ]
306 } 1191 }
307 1192
308 static_library("ash_shell_lib") { 1193 static_library("ash_shell_lib") {
309 testonly = true 1194 testonly = true
310 sources = gypi_values.ash_shell_lib_sources 1195 sources = [
1196 "../ui/views/test/test_views_delegate_aura.cc",
1197 "shell/app_list.cc",
1198 "shell/bubble.cc",
1199 "shell/context_menu.cc",
1200 "shell/context_menu.h",
1201 "shell/example_factory.h",
1202 "shell/lock_view.cc",
1203 "shell/panel_window.cc",
1204 "shell/panel_window.h",
1205 "shell/shell_delegate_impl.cc",
1206 "shell/shell_delegate_impl.h",
1207 "shell/toplevel_window.cc",
1208 "shell/toplevel_window.h",
1209 "shell/widgets.cc",
1210 "shell/window_type_launcher.cc",
1211 "shell/window_type_launcher.h",
1212 "shell/window_watcher.cc",
1213 "shell/window_watcher.h",
1214 "shell/window_watcher_shelf_item_delegate.cc",
1215 "shell/window_watcher_shelf_item_delegate.h",
1216 ]
311 1217
312 deps = [ 1218 deps = [
313 ":ash", 1219 ":ash",
314 ":ash_with_content", 1220 ":ash_with_content",
315 ":test_support_without_content", 1221 ":test_support_without_content",
316 "//ash/common/strings", 1222 "//ash/common/strings",
317 "//ash/resources", 1223 "//ash/resources",
318 "//base", 1224 "//base",
319 "//base:i18n", 1225 "//base:i18n",
320 "//components/user_manager", 1226 "//components/user_manager",
(...skipping 16 matching lines...) Expand all
337 "//ui/views", 1243 "//ui/views",
338 "//ui/views:test_support", 1244 "//ui/views:test_support",
339 "//ui/views/examples:views_examples_lib", 1245 "//ui/views/examples:views_examples_lib",
340 "//ui/views/examples:views_examples_with_content_lib", 1246 "//ui/views/examples:views_examples_with_content_lib",
341 "//ui/wm", 1247 "//ui/wm",
342 ] 1248 ]
343 } 1249 }
344 1250
345 static_library("ash_shell_lib_with_content") { 1251 static_library("ash_shell_lib_with_content") {
346 testonly = true 1252 testonly = true
347 sources = gypi_values.ash_shell_with_content_lib_sources 1253 sources = [
1254 "shell/content/client/shell_browser_main_parts.cc",
1255 "shell/content/client/shell_browser_main_parts.h",
1256 "shell/content/client/shell_content_browser_client.cc",
1257 "shell/content/client/shell_content_browser_client.h",
1258 "shell/content/client/shell_main_delegate.cc",
1259 "shell/content/client/shell_main_delegate.h",
1260 "shell/content/shell_content_state_impl.cc",
1261 "shell/content/shell_content_state_impl.h",
1262 ]
348 1263
349 deps = [ 1264 deps = [
350 ":ash_shell_lib", 1265 ":ash_shell_lib",
351 ":ash_with_content", 1266 ":ash_with_content",
352 "//base:i18n", 1267 "//base:i18n",
353 "//chrome:packed_resources", 1268 "//chrome:packed_resources",
354 "//content", 1269 "//content",
355 "//content/shell:content_shell_lib", 1270 "//content/shell:content_shell_lib",
356 "//device/bluetooth", 1271 "//device/bluetooth",
357 "//net", 1272 "//net",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 "//net:net", 1339 "//net:net",
425 "//ui/chromeos", 1340 "//ui/chromeos",
426 "//ui/display", 1341 "//ui/display",
427 "//ui/display:test_support", 1342 "//ui/display:test_support",
428 "//ui/display:test_util", 1343 "//ui/display:test_util",
429 ] 1344 ]
430 } 1345 }
431 } 1346 }
432 1347
433 test("ash_unittests") { 1348 test("ash_unittests") {
434 sources = gypi_values.ash_unittests_sources 1349 sources = [
435 sources += [ "test/ash_test_environment_default.cc" ] 1350 "accelerators/accelerator_commands_unittest.cc",
1351 "accelerators/accelerator_controller_unittest.cc",
1352 "accelerators/accelerator_filter_unittest.cc",
1353 "accelerators/magnifier_key_scroller_unittest.cc",
1354 "accelerators/spoken_feedback_toggler_unittest.cc",
1355 "app_list/app_list_presenter_delegate_unittest.cc",
1356 "ash_touch_exploration_manager_chromeos_unittest.cc",
1357 "aura/pointer_watcher_adapter_unittest.cc",
1358 "autoclick/autoclick_unittest.cc",
1359 "common/accelerators/accelerator_table_unittest.cc",
1360 "common/frame/caption_buttons/frame_caption_button_container_view_unittest.c c",
1361 "common/frame/custom_frame_view_ash_unittest.cc",
1362 "common/frame/default_header_painter_unittest.cc",
1363 "common/material_design/material_design_controller_unittest.cc",
1364 "common/popup_message_unittest.cc",
1365 "common/shelf/shelf_background_animator_unittest.cc",
1366 "common/shelf/shelf_button_pressed_metric_tracker_unittest.cc",
1367 "common/shelf/shelf_locking_manager_unittest.cc",
1368 "common/shelf/shelf_model_unittest.cc",
1369 "common/shelf/shelf_tooltip_manager_unittest.cc",
1370 "common/shelf/shelf_window_watcher_unittest.cc",
1371 "common/system/chromeos/brightness/tray_brightness_unittest.cc",
1372 "common/system/chromeos/ime_menu/ime_menu_tray_unittest.cc",
1373 "common/system/chromeos/media_security/multi_profile_media_tray_item_unittes t.cc",
1374 "common/system/chromeos/palette/mock_palette_tool_delegate.cc",
1375 "common/system/chromeos/palette/mock_palette_tool_delegate.h",
1376 "common/system/chromeos/palette/palette_tool_manager_unittest.cc",
1377 "common/system/chromeos/palette/tools/create_note_unittest.cc",
1378 "common/system/chromeos/palette/tools/laser_pointer_mode_test_api.cc",
1379 "common/system/chromeos/palette/tools/laser_pointer_mode_test_api.h",
1380 "common/system/chromeos/palette/tools/laser_pointer_points_test_api.cc",
1381 "common/system/chromeos/palette/tools/laser_pointer_points_test_api.h",
1382 "common/system/chromeos/palette/tools/laser_pointer_unittest.cc",
1383 "common/system/chromeos/palette/tools/screenshot_unittest.cc",
1384 "common/system/chromeos/power/power_status_unittest.cc",
1385 "common/system/chromeos/power/power_status_view_unittest.cc",
1386 "common/system/chromeos/power/tray_power_unittest.cc",
1387 "common/system/chromeos/screen_security/screen_tray_item_unittest.cc",
1388 "common/system/chromeos/session/logout_confirmation_controller_unittest.cc",
1389 "common/system/chromeos/session/tray_session_length_limit_unittest.cc",
1390 "common/system/chromeos/supervised/tray_supervised_user_unittest.cc",
1391 "common/system/date/date_view_unittest.cc",
1392 "common/system/ime/tray_ime_chromeos_unittest.cc",
1393 "common/system/tray/system_tray_unittest.cc",
1394 "common/system/tray/tray_details_view_unittest.cc",
1395 "common/system/update/tray_update_unittest.cc",
1396 "common/system/user/tray_user_unittest.cc",
1397 "common/wm/container_finder_unittest.cc",
1398 "common/wm/overview/cleanup_animation_observer_unittest.cc",
1399 "common/wm/workspace/workspace_event_handler_test_helper.cc",
1400 "common/wm/workspace/workspace_event_handler_test_helper.h",
1401 "dip_unittest.cc",
1402 "display/cursor_window_controller_unittest.cc",
1403 "display/display_change_observer_chromeos_unittest.cc",
1404 "display/display_color_manager_chromeos_unittest.cc",
1405 "display/display_error_observer_chromeos_unittest.cc",
1406 "display/display_manager_unittest.cc",
1407 "display/display_util_unittest.cc",
1408 "display/extended_mouse_warp_controller_unittest.cc",
1409 "display/json_converter_unittest.cc",
1410 "display/mirror_window_controller_unittest.cc",
1411 "display/mouse_cursor_event_filter_unittest.cc",
1412 "display/projecting_observer_chromeos_unittest.cc",
1413 "display/resolution_notification_controller_unittest.cc",
1414 "display/root_window_transformers_unittest.cc",
1415 "display/screen_ash_unittest.cc",
1416 "display/screen_position_controller_unittest.cc",
1417 "display/unified_mouse_warp_controller_unittest.cc",
1418 "display/window_tree_host_manager_unittest.cc",
1419 "drag_drop/drag_drop_controller_unittest.cc",
1420 "drag_drop/drag_drop_tracker_unittest.cc",
1421 "extended_desktop_unittest.cc",
1422 "focus_cycler_unittest.cc",
1423 "frame/caption_buttons/frame_size_button_unittest.cc",
1424 "host/ash_window_tree_host_x11_unittest.cc",
1425 "magnifier/magnification_controller_unittest.cc",
1426 "magnifier/partial_magnification_controller_unittest.cc",
1427 "metrics/desktop_task_switch_metric_recorder_unittest.cc",
1428 "metrics/task_switch_metrics_recorder_unittest.cc",
1429 "metrics/task_switch_time_tracker_unittest.cc",
1430 "metrics/user_metrics_recorder_unittest.cc",
1431 "root_window_controller_unittest.cc",
1432 "rotator/screen_rotation_animation_unittest.cc",
1433 "screen_util_unittest.cc",
1434 "shelf/shelf_layout_manager_unittest.cc",
1435 "shelf/shelf_unittest.cc",
1436 "shelf/shelf_view_unittest.cc",
1437 "shelf/shelf_widget_unittest.cc",
1438 "shell_unittest.cc",
1439 "sticky_keys/sticky_keys_overlay_unittest.cc",
1440 "sticky_keys/sticky_keys_unittest.cc",
1441 "system/chromeos/power/power_event_observer_unittest.cc",
1442 "system/chromeos/power/video_activity_notifier_unittest.cc",
1443 "system/chromeos/rotation/tray_rotation_lock_unittest.cc",
1444 "system/chromeos/screen_layout_observer_unittest.cc",
1445 "system/overview/overview_button_tray_unittest.cc",
1446 "system/toast/toast_manager_unittest.cc",
1447 "system/web_notification/ash_popup_alignment_delegate_unittest.cc",
1448 "system/web_notification/web_notification_tray_unittest.cc",
1449 "test/ash_test_environment_default.cc",
1450 "test/ash_test_helper_unittest.cc",
1451 "test/ash_unittests.cc",
1452 "tooltips/tooltip_controller_unittest.cc",
1453 "touch/touch_observer_hud_unittest.cc",
1454 "touch/touch_transformer_controller_unittest.cc",
1455 "touch/touchscreen_util_unittest.cc",
1456 "utility/screenshot_controller_unittest.cc",
1457 "virtual_keyboard_controller_unittest.cc",
1458 "wallpaper/wallpaper_controller_unittest.cc",
1459 "wm/always_on_top_controller_unittest.cc",
1460 "wm/ash_focus_rules_unittest.cc",
1461 "wm/ash_native_cursor_manager_unittest.cc",
1462 "wm/dock/docked_window_layout_manager_unittest.cc",
1463 "wm/dock/docked_window_resizer_unittest.cc",
1464 "wm/drag_window_resizer_unittest.cc",
1465 "wm/gestures/overview_gesture_handler_unittest.cc",
1466 "wm/immersive_fullscreen_controller_unittest.cc",
1467 "wm/lock_layout_manager_unittest.cc",
1468 "wm/lock_state_controller_unittest.cc",
1469 "wm/maximize_mode/accelerometer_test_data_literals.cc",
1470 "wm/maximize_mode/maximize_mode_controller_unittest.cc",
1471 "wm/maximize_mode/maximize_mode_window_manager_unittest.cc",
1472 "wm/mru_window_tracker_unittest.cc",
1473 "wm/overlay_event_filter_unittest.cc",
1474 "wm/overview/window_selector_unittest.cc",
1475 "wm/panels/panel_layout_manager_unittest.cc",
1476 "wm/panels/panel_window_resizer_unittest.cc",
1477 "wm/resize_shadow_and_cursor_unittest.cc",
1478 "wm/root_window_layout_manager_unittest.cc",
1479 "wm/screen_dimmer_unittest.cc",
1480 "wm/screen_pinning_controller_unittest.cc",
1481 "wm/session_state_animator_impl_unittest.cc",
1482 "wm/stacking_controller_unittest.cc",
1483 "wm/system_gesture_event_filter_unittest.cc",
1484 "wm/system_modal_container_layout_manager_unittest.cc",
1485 "wm/toplevel_window_event_handler_unittest.cc",
1486 "wm/video_detector_unittest.cc",
1487 "wm/window_animations_unittest.cc",
1488 "wm/window_cycle_controller_unittest.cc",
1489 "wm/window_manager_unittest.cc",
1490 "wm/window_modality_controller_unittest.cc",
1491 "wm/window_positioner_unittest.cc",
1492 "wm/window_state_unittest.cc",
1493 "wm/window_util_unittest.cc",
1494 "wm/workspace/magnetism_matcher_unittest.cc",
1495 "wm/workspace/multi_window_resize_controller_unittest.cc",
1496 "wm/workspace/workspace_event_handler_unittest.cc",
1497 "wm/workspace/workspace_layout_manager_unittest.cc",
1498 "wm/workspace/workspace_window_resizer_unittest.cc",
1499 "wm/workspace_controller_test_helper.cc",
1500 "wm/workspace_controller_test_helper.h",
1501 "wm/workspace_controller_unittest.cc",
1502 ]
436 configs += [ 1503 configs += [
437 "//build/config:precompiled_headers", 1504 "//build/config:precompiled_headers",
438 "//build/config/compiler:no_size_t_to_int_warning", 1505 "//build/config/compiler:no_size_t_to_int_warning",
439 ] 1506 ]
440 1507
441 deps = [ 1508 deps = [
442 ":ash", 1509 ":ash",
443 ":test_support_without_content", 1510 ":test_support_without_content",
444 "//ash/autoclick/common:autoclick", 1511 "//ash/autoclick/common:autoclick",
445 "//ash/common/strings", 1512 "//ash/common/strings",
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 if (is_win) { 1637 if (is_win) {
571 configs -= [ "//build/config/win:console" ] 1638 configs -= [ "//build/config/win:console" ]
572 configs += [ "//build/config/win:windowed" ] 1639 configs += [ "//build/config/win:windowed" ]
573 deps += [ "//sandbox" ] 1640 deps += [ "//sandbox" ]
574 } 1641 }
575 1642
576 if (is_chromeos) { 1643 if (is_chromeos) {
577 deps += [ "//device/bluetooth" ] 1644 deps += [ "//device/bluetooth" ]
578 } 1645 }
579 } 1646 }
580 # When adding support for isolates, please have a look at run-time dependencies
581 # in the ash_unittests_run target in ash.gyp.
OLDNEW
« no previous file with comments | « no previous file | ash/ash.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698