| 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 "test/window_test_api.h", | 269 "test/window_test_api.h", |
| 270 ] | 270 ] |
| 271 | 271 |
| 272 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 272 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 273 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 273 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 274 | 274 |
| 275 public_deps = [ | 275 public_deps = [ |
| 276 ":aura", | 276 ":aura", |
| 277 ] | 277 ] |
| 278 deps = [ | 278 deps = [ |
| 279 "//base/test:test_support", |
| 279 "//services/ui/public/interfaces", | 280 "//services/ui/public/interfaces", |
| 280 "//skia", | 281 "//skia", |
| 281 "//testing/gtest", | 282 "//testing/gtest", |
| 282 "//ui/base:test_support", | 283 "//ui/base:test_support", |
| 283 "//ui/base/ime", | 284 "//ui/base/ime", |
| 284 "//ui/compositor:test_support", | 285 "//ui/compositor:test_support", |
| 285 "//ui/display", | 286 "//ui/display", |
| 286 "//ui/events", | 287 "//ui/events", |
| 287 "//ui/events:events_base", | 288 "//ui/events:events_base", |
| 288 "//ui/events:test_support", | 289 "//ui/events:test_support", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 ] | 381 ] |
| 381 | 382 |
| 382 if (is_linux) { | 383 if (is_linux) { |
| 383 deps += [ "//third_party/mesa" ] | 384 deps += [ "//third_party/mesa" ] |
| 384 } | 385 } |
| 385 | 386 |
| 386 data_deps = [ | 387 data_deps = [ |
| 387 "//third_party/mesa:osmesa", | 388 "//third_party/mesa:osmesa", |
| 388 ] | 389 ] |
| 389 } | 390 } |
| OLD | NEW |