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

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

Issue 174803002: Move root_window.* to window_event_dispatcher.* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 10 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/app_list/views/apps_grid_view.cc ('k') | ui/aura/bench/bench_main.cc » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 'env.h', 84 'env.h',
85 'env_observer.h', 85 'env_observer.h',
86 'input_state_lookup.cc', 86 'input_state_lookup.cc',
87 'input_state_lookup.h', 87 'input_state_lookup.h',
88 'input_state_lookup_win.cc', 88 'input_state_lookup_win.cc',
89 'input_state_lookup_win.h', 89 'input_state_lookup_win.h',
90 'layout_manager.cc', 90 'layout_manager.cc',
91 'layout_manager.h', 91 'layout_manager.h',
92 'remote_window_tree_host_win.cc', 92 'remote_window_tree_host_win.cc',
93 'remote_window_tree_host_win.h', 93 'remote_window_tree_host_win.h',
94 'root_window_transformer.h',
95 'scoped_window_targeter.cc',
96 'scoped_window_targeter.h',
97 'window.cc',
98 'window.h',
99 'window_event_dispatcher.cc',
100 'window_event_dispatcher.h',
101 'window_delegate.h',
102 'window_layer_type.h',
103 'window_observer.h',
104 'window_targeter.cc',
105 'window_targeter.h',
106 'window_tracker.cc',
107 'window_tracker.h',
108 'window_tree_host.cc',
109 'window_tree_host.h',
110 'window_tree_host_delegate.h',
94 'window_tree_host_mac.mm', 111 'window_tree_host_mac.mm',
95 'window_tree_host_mac.h', 112 'window_tree_host_mac.h',
96 'window_tree_host_ozone.cc', 113 'window_tree_host_ozone.cc',
97 'window_tree_host_ozone.h', 114 'window_tree_host_ozone.h',
98 'window_tree_host_win.cc', 115 'window_tree_host_win.cc',
99 'window_tree_host_win.h', 116 'window_tree_host_win.h',
100 'window_tree_host_x11.cc', 117 'window_tree_host_x11.cc',
101 'window_tree_host_x11.h', 118 'window_tree_host_x11.h',
102 'root_window_transformer.h',
103 'root_window.cc',
104 'root_window.h',
105 'scoped_window_targeter.cc',
106 'scoped_window_targeter.h',
107 'window.cc',
108 'window.h',
109 'window_targeter.cc',
110 'window_targeter.h',
111 'window_delegate.h',
112 'window_layer_type.h',
113 'window_observer.h',
114 'window_tracker.cc',
115 'window_tracker.h',
116 'window_tree_host.cc',
117 'window_tree_host.h',
118 'window_tree_host_delegate.h',
119 ], 119 ],
120 'conditions': [ 120 'conditions': [
121 ['use_x11==1', { 121 ['use_x11==1', {
122 'dependencies': [ 122 'dependencies': [
123 '../../build/linux/system.gyp:x11', 123 '../../build/linux/system.gyp:x11',
124 '../../build/linux/system.gyp:xfixes', 124 '../../build/linux/system.gyp:xfixes',
125 '../../build/linux/system.gyp:xrandr', 125 '../../build/linux/system.gyp:xrandr',
126 '../../build/linux/system.gyp:xi', 126 '../../build/linux/system.gyp:xi',
127 ], 127 ],
128 }], 128 }],
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 '../ui_unittests.gyp:ui_test_support', 261 '../ui_unittests.gyp:ui_test_support',
262 'aura_test_support', 262 'aura_test_support',
263 'aura', 263 'aura',
264 ], 264 ],
265 'include_dirs': [ 265 'include_dirs': [
266 '..', 266 '..',
267 ], 267 ],
268 'sources': [ 268 'sources': [
269 'gestures/gesture_recognizer_unittest.cc', 269 'gestures/gesture_recognizer_unittest.cc',
270 'window_tree_host_x11_unittest.cc', 270 'window_tree_host_x11_unittest.cc',
271 'root_window_unittest.cc', 271 'window_event_dispatcher_unittest.cc',
272 'test/run_all_unittests.cc', 272 'test/run_all_unittests.cc',
273 'window_targeter_unittest.cc', 273 'window_targeter_unittest.cc',
274 'window_unittest.cc', 274 'window_unittest.cc',
275 ], 275 ],
276 'conditions': [ 276 'conditions': [
277 # osmesa GL implementation is used on linux. 277 # osmesa GL implementation is used on linux.
278 ['OS=="linux"', { 278 ['OS=="linux"', {
279 'dependencies': [ 279 'dependencies': [
280 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', 280 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
281 ], 281 ],
282 }], 282 }],
283 ['OS=="linux" and linux_use_tcmalloc==1', { 283 ['OS=="linux" and linux_use_tcmalloc==1', {
284 'dependencies': [ 284 'dependencies': [
285 # See http://crbug.com/162998#c4 for why this is needed. 285 # See http://crbug.com/162998#c4 for why this is needed.
286 '../../base/allocator/allocator.gyp:allocator', 286 '../../base/allocator/allocator.gyp:allocator',
287 ], 287 ],
288 }], 288 }],
289 ], 289 ],
290 }, 290 },
291 ], 291 ],
292 } 292 }
OLDNEW
« no previous file with comments | « ui/app_list/views/apps_grid_view.cc ('k') | ui/aura/bench/bench_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698