| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 ] | 133 ] |
| 134 } | 134 } |
| 135 | 135 |
| 136 if (use_ozone) { | 136 if (use_ozone) { |
| 137 sources += [ | 137 sources += [ |
| 138 "window_tree_host_ozone.cc", | 138 "window_tree_host_ozone.cc", |
| 139 "window_tree_host_ozone.h", | 139 "window_tree_host_ozone.h", |
| 140 ] | 140 ] |
| 141 | 141 |
| 142 deps += [ | 142 deps += [ |
| 143 "//ui/events/ozone:events_ozone", | |
| 144 "//ui/ozone", | 143 "//ui/ozone", |
| 145 ] | 144 ] |
| 146 } | 145 } |
| 147 } | 146 } |
| 148 | 147 |
| 149 source_set("test_support") { | 148 source_set("test_support") { |
| 150 testonly = true | 149 testonly = true |
| 151 sources = [ | 150 sources = [ |
| 152 "test/aura_test_base.cc", | 151 "test/aura_test_base.cc", |
| 153 "test/aura_test_base.h", | 152 "test/aura_test_base.h", |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 "//ui/gfx/geometry", | 301 "//ui/gfx/geometry", |
| 303 "//ui/gl", | 302 "//ui/gl", |
| 304 ] | 303 ] |
| 305 | 304 |
| 306 if (is_linux) { | 305 if (is_linux) { |
| 307 deps += [ | 306 deps += [ |
| 308 "//third_party/mesa", | 307 "//third_party/mesa", |
| 309 ] | 308 ] |
| 310 } | 309 } |
| 311 } | 310 } |
| OLD | NEW |