OLD | NEW |
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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 'window_observer.h', | 101 'window_observer.h', |
102 'window_targeter.cc', | 102 'window_targeter.cc', |
103 'window_targeter.h', | 103 'window_targeter.h', |
104 'window_tracker.cc', | 104 'window_tracker.cc', |
105 'window_tracker.h', | 105 'window_tracker.h', |
106 'window_tree_host.cc', | 106 'window_tree_host.cc', |
107 'window_tree_host.h', | 107 'window_tree_host.h', |
108 'window_tree_host_mac.h', | 108 'window_tree_host_mac.h', |
109 'window_tree_host_mac.mm', | 109 'window_tree_host_mac.mm', |
110 'window_tree_host_observer.h', | 110 'window_tree_host_observer.h', |
111 'window_tree_host_ozone.cc', | |
112 'window_tree_host_ozone.h', | |
113 'window_tree_host_win.cc', | |
114 'window_tree_host_win.h', | |
115 'window_tree_host_x11.cc', | 111 'window_tree_host_x11.cc', |
116 'window_tree_host_x11.h', | 112 'window_tree_host_x11.h', |
117 ], | 113 ], |
118 'conditions': [ | 114 'conditions': [ |
119 ['use_x11==1', { | 115 ['use_x11==1', { |
120 'dependencies': [ | 116 'dependencies': [ |
121 '../../build/linux/system.gyp:x11', | 117 '../../build/linux/system.gyp:x11', |
122 '../../build/linux/system.gyp:xrandr', | 118 '../../build/linux/system.gyp:xrandr', |
123 '../../build/linux/system.gyp:xi', | 119 '../../build/linux/system.gyp:xi', |
124 '../events/devices/events_devices.gyp:events_devices', | 120 '../events/devices/events_devices.gyp:events_devices', |
(...skipping 10 matching lines...) Expand all Loading... |
135 'sources!': [ | 131 'sources!': [ |
136 'input_state_lookup.cc', | 132 'input_state_lookup.cc', |
137 ], | 133 ], |
138 }], | 134 }], |
139 ['use_ozone==1', { | 135 ['use_ozone==1', { |
140 'dependencies': [ | 136 'dependencies': [ |
141 '../ozone/ozone.gyp:ozone', | 137 '../ozone/ozone.gyp:ozone', |
142 '../ozone/ozone.gyp:ozone_base', | 138 '../ozone/ozone.gyp:ozone_base', |
143 ], | 139 ], |
144 }], | 140 }], |
| 141 ['OS=="win" or use_ozone==1', { |
| 142 'sources': [ |
| 143 'window_tree_host_impl.cc', |
| 144 'window_tree_host_impl.h', |
| 145 ], |
| 146 }], |
145 ], | 147 ], |
146 }, | 148 }, |
147 { | 149 { |
148 # GN version: //ui/aura:test_support | 150 # GN version: //ui/aura:test_support |
149 'target_name': 'aura_test_support', | 151 'target_name': 'aura_test_support', |
150 'type': 'static_library', | 152 'type': 'static_library', |
151 'dependencies': [ | 153 'dependencies': [ |
152 '../../skia/skia.gyp:skia', | 154 '../../skia/skia.gyp:skia', |
153 '../../testing/gtest.gyp:gtest', | 155 '../../testing/gtest.gyp:gtest', |
154 '../base/ime/ui_base_ime.gyp:ui_base_ime', | 156 '../base/ime/ui_base_ime.gyp:ui_base_ime', |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 'dependencies': [ | 336 'dependencies': [ |
335 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 337 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
336 ], | 338 ], |
337 }], | 339 }], |
338 ], | 340 ], |
339 }, | 341 }, |
340 ], | 342 ], |
341 }], | 343 }], |
342 ], | 344 ], |
343 } | 345 } |
OLD | NEW |