| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 ] | 140 ] |
| 141 | 141 |
| 142 defines = [ "AURA_IMPLEMENTATION" ] | 142 defines = [ "AURA_IMPLEMENTATION" ] |
| 143 | 143 |
| 144 deps = [ | 144 deps = [ |
| 145 "//base", | 145 "//base", |
| 146 "//base:i18n", | 146 "//base:i18n", |
| 147 "//base/third_party/dynamic_annotations", | 147 "//base/third_party/dynamic_annotations", |
| 148 "//cc", | 148 "//cc", |
| 149 "//cc/surfaces", | 149 "//cc/surfaces", |
| 150 "//components/discardable_memory/client", |
| 151 "//components/discardable_memory/public/interfaces", |
| 150 "//gpu/ipc/client", | 152 "//gpu/ipc/client", |
| 151 "//mojo/public/cpp/system", | 153 "//mojo/public/cpp/system", |
| 152 "//net", | 154 "//net", |
| 153 "//services/service_manager/public/cpp", | 155 "//services/service_manager/public/cpp", |
| 154 "//services/ui/public/cpp", | 156 "//services/ui/public/cpp", |
| 155 "//services/ui/public/interfaces", | 157 "//services/ui/public/interfaces", |
| 156 "//skia", | 158 "//skia", |
| 157 "//ui/base", | 159 "//ui/base", |
| 158 "//ui/base/ime", | 160 "//ui/base/ime", |
| 159 "//ui/display", | 161 "//ui/display", |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 ] | 375 ] |
| 374 | 376 |
| 375 if (is_linux) { | 377 if (is_linux) { |
| 376 deps += [ "//third_party/mesa" ] | 378 deps += [ "//third_party/mesa" ] |
| 377 } | 379 } |
| 378 | 380 |
| 379 data_deps = [ | 381 data_deps = [ |
| 380 "//third_party/mesa:osmesa", | 382 "//third_party/mesa:osmesa", |
| 381 ] | 383 ] |
| 382 } | 384 } |
| OLD | NEW |