OLD | NEW |
| (Empty) |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'targets': [ | |
7 { | |
8 'target_name': 'ash_wm_common', | |
9 'type': '<(component)', | |
10 'dependencies': [ | |
11 '../../ash_resources.gyp:ash_resources', | |
12 '../../../base/base.gyp:base', | |
13 '../../../skia/skia.gyp:skia', | |
14 '../../../ui/aura/aura.gyp:aura', | |
15 '../../../ui/base/ui_base.gyp:ui_base', | |
16 '../../../ui/compositor/compositor.gyp:compositor', | |
17 '../../../ui/display/display.gyp:display', | |
18 '../../../ui/events/events.gyp:events', | |
19 '../../../ui/events/events.gyp:events_base', | |
20 '../../../ui/gfx/gfx.gyp:gfx', | |
21 '../../../ui/gfx/gfx.gyp:gfx_geometry', | |
22 '../../../ui/keyboard/keyboard.gyp:keyboard', | |
23 '../../../ui/views/views.gyp:views', | |
24 '../../../ui/wm/wm.gyp:wm', | |
25 ], | |
26 'defines': [ | |
27 'ASH_WM_COMMON_IMPLEMENTATION', | |
28 ], | |
29 'sources': [ | |
30 'always_on_top_controller.cc', | |
31 'always_on_top_controller.h', | |
32 'ash_wm_common_export.h', | |
33 'background_animator.cc', | |
34 'background_animator.h', | |
35 'container_finder.cc', | |
36 'container_finder.h', | |
37 'default_state.cc', | |
38 'default_state.h', | |
39 'default_window_resizer.cc', | |
40 'default_window_resizer.h', | |
41 'dock/docked_window_layout_manager.cc', | |
42 'dock/docked_window_layout_manager.h', | |
43 'dock/docked_window_layout_manager_observer.h', | |
44 'dock/docked_window_resizer.cc', | |
45 'dock/docked_window_resizer.h', | |
46 'drag_details.cc', | |
47 'drag_details.h', | |
48 'fullscreen_window_finder.cc', | |
49 'fullscreen_window_finder.h', | |
50 'panels/panel_layout_manager.cc', | |
51 'panels/panel_layout_manager.h', | |
52 'panels/panel_window_resizer.cc', | |
53 'panels/panel_window_resizer.h', | |
54 'root_window_finder.cc', | |
55 'root_window_finder.h', | |
56 'shelf/wm_shelf.h', | |
57 'shelf/wm_shelf_constants.cc', | |
58 'shelf/wm_shelf_constants.h', | |
59 'shelf/wm_shelf_observer.h', | |
60 'shelf/wm_shelf_types.h', | |
61 'shelf/wm_shelf_util.cc', | |
62 'shelf/wm_shelf_util.h', | |
63 'switchable_windows.cc', | |
64 'switchable_windows.h', | |
65 'window_animation_types.h', | |
66 'window_parenting_utils.cc', | |
67 'window_parenting_utils.h', | |
68 'window_positioner.cc', | |
69 'window_positioner.h', | |
70 'window_positioning_utils.cc', | |
71 'window_positioning_utils.h', | |
72 'window_resizer.cc', | |
73 'window_resizer.h', | |
74 'window_state.cc', | |
75 'window_state.h', | |
76 'window_state_delegate.cc', | |
77 'window_state_delegate.h', | |
78 'window_state_observer.h', | |
79 'window_state_util.cc', | |
80 'window_state_util.h', | |
81 'wm_activation_observer.h', | |
82 'wm_display_observer.h', | |
83 'wm_event.cc', | |
84 'wm_event.h', | |
85 'wm_globals.cc', | |
86 'wm_globals.h', | |
87 'wm_layout_manager.h', | |
88 'wm_lookup.cc', | |
89 'wm_lookup.h', | |
90 'wm_overview_mode_observer.h', | |
91 'wm_root_window_controller.h', | |
92 'wm_root_window_controller_observer.h', | |
93 'wm_screen_util.cc', | |
94 'wm_screen_util.h', | |
95 'wm_snap_to_pixel_layout_manager.cc', | |
96 'wm_snap_to_pixel_layout_manager.h', | |
97 'wm_toplevel_window_event_handler.cc', | |
98 'wm_toplevel_window_event_handler.h', | |
99 'wm_types.cc', | |
100 'wm_types.h', | |
101 'wm_user_metrics_action.h', | |
102 'wm_window.h', | |
103 'wm_window_observer.h', | |
104 'wm_window_property.h', | |
105 'wm_window_tracker.h', | |
106 'workspace/magnetism_matcher.cc', | |
107 'workspace/magnetism_matcher.h', | |
108 'workspace/multi_window_resize_controller.cc', | |
109 'workspace/multi_window_resize_controller.h', | |
110 'workspace/phantom_window_controller.cc', | |
111 'workspace/phantom_window_controller.h', | |
112 'workspace/two_step_edge_cycler.cc', | |
113 'workspace/two_step_edge_cycler.h', | |
114 'workspace/workspace_layout_manager.cc', | |
115 'workspace/workspace_layout_manager.h', | |
116 'workspace/workspace_layout_manager_backdrop_delegate.h', | |
117 'workspace/workspace_layout_manager_delegate.h', | |
118 'workspace/workspace_types.h', | |
119 'workspace/workspace_window_resizer.cc', | |
120 'workspace/workspace_window_resizer.h', | |
121 ], | |
122 'conditions': [ | |
123 ['OS=="win"', { | |
124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
125 'msvs_disabled_warnings': [ 4267, ], | |
126 }], | |
127 ], | |
128 }, | |
129 ], | |
130 } | |
OLD | NEW |