| 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 | 6 |
| 7 component("aura") { | 7 component("aura") { |
| 8 sources = [ | 8 sources = [ |
| 9 "client/aura_constants.cc", | 9 "client/aura_constants.cc", |
| 10 "client/aura_constants.h", | 10 "client/aura_constants.h", |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 "test/test_window_tree_client.h", | 168 "test/test_window_tree_client.h", |
| 169 "test/test_windows.cc", | 169 "test/test_windows.cc", |
| 170 "test/test_windows.h", | 170 "test/test_windows.h", |
| 171 "test/test_window_delegate.cc", | 171 "test/test_window_delegate.cc", |
| 172 "test/test_window_delegate.h", | 172 "test/test_window_delegate.h", |
| 173 "test/ui_controls_factory_aura.h", | 173 "test/ui_controls_factory_aura.h", |
| 174 "test/window_event_dispatcher_test_api.cc", | 174 "test/window_event_dispatcher_test_api.cc", |
| 175 "test/window_event_dispatcher_test_api.h", | 175 "test/window_event_dispatcher_test_api.h", |
| 176 "test/window_test_api.cc", | 176 "test/window_test_api.cc", |
| 177 "test/window_test_api.h", | 177 "test/window_test_api.h", |
| 178 "test/x11_event_sender.cc", |
| 179 "test/x11_event_sender.h", |
| 178 ] | 180 ] |
| 179 | 181 |
| 180 public_deps = [ | 182 public_deps = [ |
| 181 ":aura", | 183 ":aura", |
| 182 ] | 184 ] |
| 183 deps = [ | 185 deps = [ |
| 184 "//skia", | 186 "//skia", |
| 185 "//testing/gtest", | 187 "//testing/gtest", |
| 186 "//ui/base:test_support", | 188 "//ui/base:test_support", |
| 187 "//ui/compositor:test_support", | 189 "//ui/compositor:test_support", |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 "//ui/gfx/geometry", | 302 "//ui/gfx/geometry", |
| 301 "//ui/gl", | 303 "//ui/gl", |
| 302 ] | 304 ] |
| 303 | 305 |
| 304 if (is_linux) { | 306 if (is_linux) { |
| 305 deps += [ | 307 deps += [ |
| 306 "//third_party/mesa", | 308 "//third_party/mesa", |
| 307 ] | 309 ] |
| 308 } | 310 } |
| 309 } | 311 } |
| OLD | NEW |