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

Side by Side Diff: ash/wm/common/ash_wm_common.gyp

Issue 1943603002: Makes ash/wm/common a library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge again Created 4 years, 7 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 | « ash/wm/common/always_on_top_controller.h ('k') | ash/wm/common/ash_wm_common_export.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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/gfx/gfx.gyp:gfx',
20 '../../../ui/gfx/gfx.gyp:gfx_geometry',
21 '../../../ui/keyboard/keyboard.gyp:keyboard',
22 '../../../ui/views/views.gyp:views',
23 '../../../ui/wm/wm.gyp:wm',
24 ],
25 'defines': [
26 'ASH_WM_COMMON_IMPLEMENTATION',
27 ],
28 'sources': [
29 'always_on_top_controller.cc',
30 'always_on_top_controller.h',
31 'background_animator.cc',
32 'background_animator.h',
33 'default_state.cc',
34 'default_state.h',
35 'default_window_resizer.cc',
36 'default_window_resizer.h',
37 'dock/docked_window_layout_manager.cc',
38 'dock/docked_window_layout_manager.h',
39 'dock/docked_window_layout_manager_observer.h',
40 'dock/docked_window_resizer.cc',
41 'dock/docked_window_resizer.h',
42 'drag_details.cc',
43 'drag_details.h',
44 'fullscreen_window_finder.cc',
45 'fullscreen_window_finder.h',
46 'panels/panel_layout_manager.cc',
47 'panels/panel_layout_manager.h',
48 'panels/panel_window_resizer.cc',
49 'panels/panel_window_resizer.h',
50 'root_window_finder.cc',
51 'root_window_finder.h',
52 'shelf/wm_shelf.h',
53 'shelf/wm_shelf_constants.cc',
54 'shelf/wm_shelf_constants.h',
55 'shelf/wm_shelf_observer.h',
56 'shelf/wm_shelf_types.h',
57 'shelf/wm_shelf_util.cc',
58 'shelf/wm_shelf_util.h',
59 'switchable_windows.cc',
60 'switchable_windows.h',
61 'window_animation_types.h',
62 'window_parenting_utils.cc',
63 'window_parenting_utils.h',
64 'window_positioner.cc',
65 'window_positioner.h',
66 'window_positioning_utils.cc',
67 'window_positioning_utils.h',
68 'window_resizer.cc',
69 'window_resizer.h',
70 'window_state.cc',
71 'window_state.h',
72 'window_state_delegate.cc',
73 'window_state_delegate.h',
74 'window_state_observer.h',
75 'window_state_util.cc',
76 'window_state_util.h',
77 'wm_activation_observer.h',
78 'wm_display_observer.h',
79 'wm_event.cc',
80 'wm_event.h',
81 'wm_globals.cc',
82 'wm_globals.h',
83 'wm_layout_manager.h',
84 'wm_lookup.cc',
85 'wm_lookup.h',
86 'wm_overview_mode_observer.h',
87 'wm_root_window_controller.h',
88 'wm_root_window_controller_observer.h',
89 'wm_screen_util.cc',
90 'wm_screen_util.h',
91 'wm_snap_to_pixel_layout_manager.cc',
92 'wm_snap_to_pixel_layout_manager.h',
93 'wm_types.cc',
94 'wm_types.h',
95 'wm_user_metrics_action.h',
96 'wm_window.h',
97 'wm_window_observer.h',
98 'wm_window_property.h',
99 'wm_window_tracker.h',
100 'workspace/magnetism_matcher.cc',
101 'workspace/magnetism_matcher.h',
102 'workspace/multi_window_resize_controller.cc',
103 'workspace/multi_window_resize_controller.h',
104 'workspace/phantom_window_controller.cc',
105 'workspace/phantom_window_controller.h',
106 'workspace/two_step_edge_cycler.cc',
107 'workspace/two_step_edge_cycler.h',
108 'workspace/workspace_layout_manager.cc',
109 'workspace/workspace_layout_manager.h',
110 'workspace/workspace_layout_manager_backdrop_delegate.h',
111 'workspace/workspace_layout_manager_delegate.h',
112 'workspace/workspace_types.h',
113 'workspace/workspace_window_resizer.cc',
114 'workspace/workspace_window_resizer.h',
115 ],
116 'conditions': [
117 ['OS=="win"', {
118 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
119 'msvs_disabled_warnings': [ 4267, ],
120 }],
121 ],
122 },
123 ],
124 }
OLDNEW
« no previous file with comments | « ash/wm/common/always_on_top_controller.h ('k') | ash/wm/common/ash_wm_common_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698