| 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 "//cc/surfaces", | 148 "//cc/surfaces", |
| 149 "//gpu/ipc/client", | 149 "//gpu/ipc/client", |
| 150 "//mojo/public/cpp/system", | 150 "//mojo/public/cpp/system", |
| 151 "//net", | 151 "//net", |
| 152 "//services/service_manager/public/cpp", | 152 "//services/service_manager/public/cpp", |
| 153 "//services/ui/public/cpp", | 153 "//services/ui/public/cpp", |
| 154 "//services/ui/public/interfaces", | 154 "//services/ui/public/interfaces", |
| 155 "//skia", | 155 "//skia", |
| 156 "//ui/base", | 156 "//ui/base", |
| 157 "//ui/base/ime", | 157 "//ui/base/ime", |
| 158 "//ui/compositor", | |
| 159 "//ui/display", | 158 "//ui/display", |
| 160 "//ui/events", | 159 "//ui/events", |
| 161 "//ui/events:events_base", | 160 "//ui/events:events_base", |
| 162 "//ui/events/platform", | 161 "//ui/events/platform", |
| 163 "//ui/gfx", | 162 "//ui/gfx", |
| 164 "//ui/gfx/geometry", | 163 "//ui/gfx/geometry", |
| 165 "//ui/gl", | 164 "//ui/gl", |
| 166 "//ui/platform_window", | 165 "//ui/platform_window", |
| 167 "//ui/platform_window/mojo", | 166 "//ui/platform_window/mojo", |
| 168 "//ui/platform_window/stub", | 167 "//ui/platform_window/stub", |
| 169 ] | 168 ] |
| 170 | 169 |
| 170 public_deps = [ |
| 171 "//ui/compositor", |
| 172 ] |
| 173 |
| 171 data_deps = [ | 174 data_deps = [ |
| 172 "//services/ui", | 175 "//services/ui", |
| 173 ] | 176 ] |
| 174 | 177 |
| 175 if (use_x11) { | 178 if (use_x11) { |
| 176 configs += [ | 179 configs += [ |
| 177 "//build/config/linux:x11", | 180 "//build/config/linux:x11", |
| 178 "//build/config/linux:xrandr", | 181 "//build/config/linux:xrandr", |
| 179 ] | 182 ] |
| 180 deps += [ | 183 deps += [ |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 ] | 363 ] |
| 361 | 364 |
| 362 if (is_linux) { | 365 if (is_linux) { |
| 363 deps += [ "//third_party/mesa" ] | 366 deps += [ "//third_party/mesa" ] |
| 364 } | 367 } |
| 365 | 368 |
| 366 data_deps = [ | 369 data_deps = [ |
| 367 "//third_party/mesa:osmesa", | 370 "//third_party/mesa:osmesa", |
| 368 ] | 371 ] |
| 369 } | 372 } |
| OLD | NEW |