| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 "//ui/events:events_base", | 161 "//ui/events:events_base", |
| 162 "//ui/events/platform", | 162 "//ui/events/platform", |
| 163 "//ui/gfx", | 163 "//ui/gfx", |
| 164 "//ui/gfx/geometry", | 164 "//ui/gfx/geometry", |
| 165 "//ui/gl", | 165 "//ui/gl", |
| 166 "//ui/platform_window", | 166 "//ui/platform_window", |
| 167 "//ui/platform_window/mojo", | 167 "//ui/platform_window/mojo", |
| 168 "//ui/platform_window/stub", | 168 "//ui/platform_window/stub", |
| 169 ] | 169 ] |
| 170 | 170 |
| 171 data_deps = [ |
| 172 "//services/ui", |
| 173 ] |
| 174 |
| 171 if (use_x11) { | 175 if (use_x11) { |
| 172 configs += [ | 176 configs += [ |
| 173 "//build/config/linux:x11", | 177 "//build/config/linux:x11", |
| 174 "//build/config/linux:xrandr", | 178 "//build/config/linux:xrandr", |
| 175 ] | 179 ] |
| 176 deps += [ | 180 deps += [ |
| 177 "//ui/events:events_base", | 181 "//ui/events:events_base", |
| 178 "//ui/events/devices", | 182 "//ui/events/devices", |
| 179 "//ui/events/devices/x11", | 183 "//ui/events/devices/x11", |
| 180 "//ui/events/platform/x11", | 184 "//ui/events/platform/x11", |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 ] | 360 ] |
| 357 | 361 |
| 358 if (is_linux) { | 362 if (is_linux) { |
| 359 deps += [ "//third_party/mesa" ] | 363 deps += [ "//third_party/mesa" ] |
| 360 } | 364 } |
| 361 | 365 |
| 362 data_deps = [ | 366 data_deps = [ |
| 363 "//third_party/mesa:osmesa", | 367 "//third_party/mesa:osmesa", |
| 364 ] | 368 ] |
| 365 } | 369 } |
| OLD | NEW |