| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 defines = [ "AURA_IMPLEMENTATION" ] | 92 defines = [ "AURA_IMPLEMENTATION" ] |
| 93 | 93 |
| 94 deps = [ | 94 deps = [ |
| 95 "//base", | 95 "//base", |
| 96 "//base:i18n", | 96 "//base:i18n", |
| 97 "//base/third_party/dynamic_annotations", | 97 "//base/third_party/dynamic_annotations", |
| 98 "//skia", | 98 "//skia", |
| 99 "//ui/base", | 99 "//ui/base", |
| 100 "//ui/base/ime", | 100 "//ui/base/ime", |
| 101 "//ui/compositor", | 101 "//ui/compositor", |
| 102 "//ui/display", |
| 102 "//ui/events", | 103 "//ui/events", |
| 103 "//ui/events:events_base", | 104 "//ui/events:events_base", |
| 104 "//ui/events/platform", | 105 "//ui/events/platform", |
| 105 "//ui/gfx", | 106 "//ui/gfx", |
| 106 "//ui/gfx/geometry", | 107 "//ui/gfx/geometry", |
| 107 "//ui/platform_window", | 108 "//ui/platform_window", |
| 108 ] | 109 ] |
| 109 | 110 |
| 110 if (use_x11) { | 111 if (use_x11) { |
| 111 configs += [ | 112 configs += [ |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 | 184 |
| 184 public_deps = [ | 185 public_deps = [ |
| 185 ":aura", | 186 ":aura", |
| 186 ] | 187 ] |
| 187 deps = [ | 188 deps = [ |
| 188 "//skia", | 189 "//skia", |
| 189 "//testing/gtest", | 190 "//testing/gtest", |
| 190 "//ui/base:test_support", | 191 "//ui/base:test_support", |
| 191 "//ui/base/ime", | 192 "//ui/base/ime", |
| 192 "//ui/compositor:test_support", | 193 "//ui/compositor:test_support", |
| 194 "//ui/display", |
| 193 "//ui/events", | 195 "//ui/events", |
| 194 "//ui/events:events_base", | 196 "//ui/events:events_base", |
| 195 "//ui/events:test_support", | 197 "//ui/events:test_support", |
| 196 "//ui/gfx", | 198 "//ui/gfx", |
| 197 "//ui/gfx/geometry", | 199 "//ui/gfx/geometry", |
| 198 "//ui/wm", | 200 "//ui/wm", |
| 199 ] | 201 ] |
| 200 | 202 |
| 201 if (is_win) { | 203 if (is_win) { |
| 202 sources += [ "test/ui_controls_factory_aurawin.cc" ] | 204 sources += [ "test/ui_controls_factory_aurawin.cc" ] |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 "window_unittest.cc", | 259 "window_unittest.cc", |
| 258 ] | 260 ] |
| 259 | 261 |
| 260 deps = [ | 262 deps = [ |
| 261 ":test_support", | 263 ":test_support", |
| 262 "//base/test:test_support", | 264 "//base/test:test_support", |
| 263 "//skia", | 265 "//skia", |
| 264 "//testing/gtest", | 266 "//testing/gtest", |
| 265 "//ui/base:test_support", | 267 "//ui/base:test_support", |
| 266 "//ui/compositor:test_support", | 268 "//ui/compositor:test_support", |
| 269 "//ui/display:test_support", |
| 267 "//ui/events:gesture_detection", | 270 "//ui/events:gesture_detection", |
| 268 "//ui/events:test_support", | 271 "//ui/events:test_support", |
| 269 "//ui/gfx", | 272 "//ui/gfx", |
| 270 "//ui/gfx/geometry", | 273 "//ui/gfx/geometry", |
| 271 "//ui/gl:test_support", | 274 "//ui/gl:test_support", |
| 272 ] | 275 ] |
| 273 | 276 |
| 274 if (is_linux) { | 277 if (is_linux) { |
| 275 deps += [ "//third_party/mesa" ] | 278 deps += [ "//third_party/mesa" ] |
| 276 } | 279 } |
| 277 | 280 |
| 278 data_deps = [ | 281 data_deps = [ |
| 279 "//third_party/mesa:osmesa", | 282 "//third_party/mesa:osmesa", |
| 280 ] | 283 ] |
| 281 } | 284 } |
| OLD | NEW |