| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("aura") { | 8 component("aura") { |
| 9 sources = [ | 9 sources = [ |
| 10 "../wm/public/activation_change_observer.cc", | 10 "../wm/public/activation_change_observer.cc", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 ] | 109 ] |
| 110 | 110 |
| 111 if (use_x11) { | 111 if (use_x11) { |
| 112 configs += [ | 112 configs += [ |
| 113 "//build/config/linux:x11", | 113 "//build/config/linux:x11", |
| 114 "//build/config/linux:xrandr", | 114 "//build/config/linux:xrandr", |
| 115 ] | 115 ] |
| 116 deps += [ | 116 deps += [ |
| 117 "//ui/events:events_base", | 117 "//ui/events:events_base", |
| 118 "//ui/events/devices", | 118 "//ui/events/devices", |
| 119 "//ui/events/devices/x11", |
| 119 "//ui/events/platform/x11", | 120 "//ui/events/platform/x11", |
| 120 "//ui/gfx/x", | 121 "//ui/gfx/x", |
| 121 ] | 122 ] |
| 122 } else { | 123 } else { |
| 123 sources -= [ | 124 sources -= [ |
| 124 "window_tree_host_x11.cc", | 125 "window_tree_host_x11.cc", |
| 125 "window_tree_host_x11.h", | 126 "window_tree_host_x11.h", |
| 126 ] | 127 ] |
| 127 } | 128 } |
| 128 | 129 |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 ] | 273 ] |
| 273 | 274 |
| 274 if (is_linux) { | 275 if (is_linux) { |
| 275 deps += [ "//third_party/mesa" ] | 276 deps += [ "//third_party/mesa" ] |
| 276 } | 277 } |
| 277 | 278 |
| 278 data_deps = [ | 279 data_deps = [ |
| 279 "//third_party/mesa:osmesa", | 280 "//third_party/mesa:osmesa", |
| 280 ] | 281 ] |
| 281 } | 282 } |
| OLD | NEW |