OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import ("//build/config/ui.gni") | 5 import ("//build/config/ui.gni") |
6 | 6 |
7 component("aura") { | 7 component("aura") { |
8 sources = [ | 8 sources = [ |
9 "client/aura_constants.cc", | 9 "client/aura_constants.cc", |
10 "client/aura_constants.h", | 10 "client/aura_constants.h", |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 ] | 114 ] |
115 deps += [ | 115 deps += [ |
116 "//ui/events/platform/x11", | 116 "//ui/events/platform/x11", |
117 ] | 117 ] |
118 } | 118 } |
119 | 119 |
120 if (is_win) { | 120 if (is_win) { |
121 sources -= [ | 121 sources -= [ |
122 "input_state_lookup.cc", | 122 "input_state_lookup.cc", |
123 ] | 123 ] |
124 | |
125 deps += [ | |
126 "//ui/metro_viewer", | |
127 "//ipc", | |
128 ] | |
129 } | 124 } |
130 | 125 |
131 if (use_ozone) { | 126 if (use_ozone) { |
132 sources += [ | 127 sources += [ |
133 "window_tree_host_ozone.cc", | 128 "window_tree_host_ozone.cc", |
134 "window_tree_host_ozone.h", | 129 "window_tree_host_ozone.h", |
135 ] | 130 ] |
136 | 131 |
137 # TODO(GYP) enable when these targets exist. | 132 # TODO(GYP) enable when these targets exist. |
138 #deps += [ | 133 #deps += [ |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 ] | 295 ] |
301 | 296 |
302 if (is_linux) { | 297 if (is_linux) { |
303 deps += [ | 298 deps += [ |
304 "//third_party/mesa", | 299 "//third_party/mesa", |
305 ] | 300 ] |
306 } | 301 } |
307 } | 302 } |
308 | 303 |
309 } # if (false) | 304 } # if (false) |
OLD | NEW |