| 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 public = [ | 9 public = [ |
| 10 "../wm/public/activation_change_observer.h", | 10 "../wm/public/activation_change_observer.h", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 defines = [ "AURA_IMPLEMENTATION" ] | 150 defines = [ "AURA_IMPLEMENTATION" ] |
| 151 | 151 |
| 152 deps = [ | 152 deps = [ |
| 153 "//base", | 153 "//base", |
| 154 "//base:i18n", | 154 "//base:i18n", |
| 155 "//base/third_party/dynamic_annotations", | 155 "//base/third_party/dynamic_annotations", |
| 156 "//cc", | 156 "//cc", |
| 157 "//cc/surfaces", | 157 "//cc/surfaces", |
| 158 "//components/discardable_memory/client", | 158 "//components/discardable_memory/client", |
| 159 "//components/discardable_memory/public/interfaces", | 159 "//components/discardable_memory/public/interfaces", |
| 160 "//components/viz/client", |
| 160 "//gpu/ipc/client", | 161 "//gpu/ipc/client", |
| 161 "//mojo/public/cpp/system", | 162 "//mojo/public/cpp/system", |
| 162 "//net", | 163 "//net", |
| 163 "//services/service_manager/public/cpp", | 164 "//services/service_manager/public/cpp", |
| 164 "//services/ui/public/cpp", | 165 "//services/ui/public/cpp", |
| 165 "//services/ui/public/interfaces", | 166 "//services/ui/public/interfaces", |
| 166 "//skia", | 167 "//skia", |
| 167 "//ui/base", | 168 "//ui/base", |
| 168 "//ui/base/ime", | 169 "//ui/base/ime", |
| 169 "//ui/display", | 170 "//ui/display", |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 ] | 384 ] |
| 384 | 385 |
| 385 if (is_linux) { | 386 if (is_linux) { |
| 386 deps += [ "//third_party/mesa" ] | 387 deps += [ "//third_party/mesa" ] |
| 387 } | 388 } |
| 388 | 389 |
| 389 data_deps = [ | 390 data_deps = [ |
| 390 "//third_party/mesa:osmesa", | 391 "//third_party/mesa:osmesa", |
| 391 ] | 392 ] |
| 392 } | 393 } |
| OLD | NEW |