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

Side by Side Diff: ui/wm/wm.gyp

Issue 219743002: x11: Move X event handling out of the message-pump. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge-r261267 Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « ui/wm/test/wm_test_helper.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_public', 11 'target_name': 'wm_public',
12 'type': 'static_library', 12 'type': 'static_library',
13 'dependencies': [ 13 'dependencies': [
14 '../../skia/skia.gyp:skia', 14 '../../skia/skia.gyp:skia',
15 '../aura/aura.gyp:aura', 15 '../aura/aura.gyp:aura',
16 '../gfx/gfx.gyp:gfx_geometry', 16 '../gfx/gfx.gyp:gfx_geometry',
17 ], 17 ],
18 'sources': [ 18 'sources': [
19 'public/window_types.h', 19 'public/window_types.h',
20 ], 20 ],
21 }, 21 },
22 { 22 {
23 'target_name': 'wm_core', 23 'target_name': 'wm_core',
24 'type': '<(component)', 24 'type': '<(component)',
25 'dependencies': [ 25 'dependencies': [
26 '../../base/base.gyp:base', 26 '../../base/base.gyp:base',
27 '../../skia/skia.gyp:skia', 27 '../../skia/skia.gyp:skia',
28 '../aura/aura.gyp:aura', 28 '../aura/aura.gyp:aura',
29 '../compositor/compositor.gyp:compositor', 29 '../compositor/compositor.gyp:compositor',
30 '../events/events.gyp:events',
30 '../events/events.gyp:events_base', 31 '../events/events.gyp:events_base',
31 '../events/events.gyp:events',
32 '../gfx/gfx.gyp:gfx_geometry', 32 '../gfx/gfx.gyp:gfx_geometry',
33 '../gfx/gfx.gyp:gfx', 33 '../gfx/gfx.gyp:gfx',
34 '../resources/ui_resources.gyp:ui_resources', 34 '../resources/ui_resources.gyp:ui_resources',
35 '../base/ui_base.gyp:ui_base', 35 '../base/ui_base.gyp:ui_base',
36 ], 36 ],
37 'defines': [ 37 'defines': [
38 'WM_CORE_IMPLEMENTATION', 38 'WM_CORE_IMPLEMENTATION',
39 ], 39 ],
40 'sources': [ 40 'sources': [
41 'core/base_focus_rules.cc', 41 'core/base_focus_rules.cc',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 'core/wm_state.cc', 86 'core/wm_state.cc',
87 'core/wm_state.h', 87 'core/wm_state.h',
88 ], 88 ],
89 }, 89 },
90 { 90 {
91 'target_name': 'wm_test_support', 91 'target_name': 'wm_test_support',
92 'type': 'static_library', 92 'type': 'static_library',
93 'dependencies': [ 93 'dependencies': [
94 '../../skia/skia.gyp:skia', 94 '../../skia/skia.gyp:skia',
95 '../aura/aura.gyp:aura', 95 '../aura/aura.gyp:aura',
96 '../events/events.gyp:events',
97 '../events/events.gyp:events_base',
96 ], 98 ],
97 'sources': [ 99 'sources': [
98 'test/wm_test_helper.cc', 100 'test/wm_test_helper.cc',
99 'test/wm_test_helper.h', 101 'test/wm_test_helper.h',
100 ], 102 ],
101 }, 103 },
102 { 104 {
103 'target_name': 'wm_core_unittests', 105 'target_name': 'wm_core_unittests',
104 'type': 'executable', 106 'type': 'executable',
105 'dependencies': [ 107 'dependencies': [
106 '../../base/base.gyp:base', 108 '../../base/base.gyp:base',
107 '../../base/base.gyp:test_support_base', 109 '../../base/base.gyp:test_support_base',
108 '../../skia/skia.gyp:skia', 110 '../../skia/skia.gyp:skia',
109 '../../testing/gtest.gyp:gtest', 111 '../../testing/gtest.gyp:gtest',
110 '../aura/aura.gyp:aura', 112 '../aura/aura.gyp:aura',
111 '../aura/aura.gyp:aura_test_support', 113 '../aura/aura.gyp:aura_test_support',
112 '../compositor/compositor.gyp:compositor', 114 '../compositor/compositor.gyp:compositor',
115 '../events/events.gyp:events',
113 '../events/events.gyp:events_base', 116 '../events/events.gyp:events_base',
114 '../events/events.gyp:events',
115 '../gfx/gfx.gyp:gfx_geometry', 117 '../gfx/gfx.gyp:gfx_geometry',
116 '../gfx/gfx.gyp:gfx', 118 '../gfx/gfx.gyp:gfx',
117 '../base/ui_base.gyp:ui_base', 119 '../base/ui_base.gyp:ui_base',
118 'wm_core', 120 'wm_core',
119 'wm_test_support', 121 'wm_test_support',
120 ], 122 ],
121 'sources': [ 123 'sources': [
122 'test/run_all_unittests.cc', 124 'test/run_all_unittests.cc',
123 'core/compound_event_filter_unittest.cc', 125 'core/compound_event_filter_unittest.cc',
124 'core/cursor_manager_unittest.cc', 126 'core/cursor_manager_unittest.cc',
125 'core/focus_controller_unittest.cc', 127 'core/focus_controller_unittest.cc',
126 'core/input_method_event_filter_unittest.cc', 128 'core/input_method_event_filter_unittest.cc',
127 'core/image_grid_unittest.cc', 129 'core/image_grid_unittest.cc',
128 'core/shadow_controller_unittest.cc', 130 'core/shadow_controller_unittest.cc',
129 'core/transient_window_manager_unittest.cc', 131 'core/transient_window_manager_unittest.cc',
130 'core/transient_window_stacking_client_unittest.cc', 132 'core/transient_window_stacking_client_unittest.cc',
131 'core/visibility_controller_unittest.cc', 133 'core/visibility_controller_unittest.cc',
132 'core/window_animations_unittest.cc', 134 'core/window_animations_unittest.cc',
133 'core/window_util_unittest.cc', 135 'core/window_util_unittest.cc',
134 ], 136 ],
135 }, 137 },
136 ], 138 ],
137 } 139 }
OLDNEW
« no previous file with comments | « ui/wm/test/wm_test_helper.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698