| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "demo/demo_main.cc", | 231 "demo/demo_main.cc", |
| 232 ] | 232 ] |
| 233 | 233 |
| 234 deps = [ | 234 deps = [ |
| 235 ":aura", | 235 ":aura", |
| 236 ":test_support", | 236 ":test_support", |
| 237 "//base", | 237 "//base", |
| 238 "//base:i18n", | 238 "//base:i18n", |
| 239 "//build/config/sanitizers:deps", | 239 "//build/config/sanitizers:deps", |
| 240 "//build/win:default_exe_manifest", | 240 "//build/win:default_exe_manifest", |
| 241 "//cc/surfaces", |
| 241 "//skia", | 242 "//skia", |
| 242 "//third_party/icu", | 243 "//third_party/icu", |
| 243 "//ui/base", | 244 "//ui/base", |
| 244 "//ui/compositor", | 245 "//ui/compositor", |
| 245 "//ui/compositor:test_support", | 246 "//ui/compositor:test_support", |
| 246 "//ui/display", | 247 "//ui/display", |
| 247 "//ui/events", | 248 "//ui/events", |
| 248 "//ui/gfx", | 249 "//ui/gfx", |
| 249 "//ui/gfx/geometry", | 250 "//ui/gfx/geometry", |
| 250 "//ui/gl/init", | 251 "//ui/gl/init", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 281 ] | 282 ] |
| 282 | 283 |
| 283 if (is_linux) { | 284 if (is_linux) { |
| 284 deps += [ "//third_party/mesa" ] | 285 deps += [ "//third_party/mesa" ] |
| 285 } | 286 } |
| 286 | 287 |
| 287 data_deps = [ | 288 data_deps = [ |
| 288 "//third_party/mesa:osmesa", | 289 "//third_party/mesa:osmesa", |
| 289 ] | 290 ] |
| 290 } | 291 } |
| OLD | NEW |