| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 } | 143 } |
| 144 | 144 |
| 145 if (is_android) { | 145 if (is_android) { |
| 146 deps += [ | 146 deps += [ |
| 147 "//ui/platform_window/android", | 147 "//ui/platform_window/android", |
| 148 "//ui/platform_window/android:platform_window_java", | 148 "//ui/platform_window/android:platform_window_java", |
| 149 ] | 149 ] |
| 150 } | 150 } |
| 151 } | 151 } |
| 152 | 152 |
| 153 source_set("test_support") { | 153 static_library("test_support") { |
| 154 testonly = true | 154 testonly = true |
| 155 sources = [ | 155 sources = [ |
| 156 "test/aura_test_base.cc", | 156 "test/aura_test_base.cc", |
| 157 "test/aura_test_base.h", | 157 "test/aura_test_base.h", |
| 158 "test/aura_test_helper.cc", | 158 "test/aura_test_helper.cc", |
| 159 "test/aura_test_helper.h", | 159 "test/aura_test_helper.h", |
| 160 "test/aura_test_utils.cc", | 160 "test/aura_test_utils.cc", |
| 161 "test/aura_test_utils.h", | 161 "test/aura_test_utils.h", |
| 162 "test/env_test_helper.h", | 162 "test/env_test_helper.h", |
| 163 "test/event_generator_delegate_aura.cc", | 163 "test/event_generator_delegate_aura.cc", |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 ] | 278 ] |
| 279 | 279 |
| 280 if (is_linux) { | 280 if (is_linux) { |
| 281 deps += [ "//third_party/mesa" ] | 281 deps += [ "//third_party/mesa" ] |
| 282 } | 282 } |
| 283 | 283 |
| 284 data_deps = [ | 284 data_deps = [ |
| 285 "//third_party/mesa:osmesa", | 285 "//third_party/mesa:osmesa", |
| 286 ] | 286 ] |
| 287 } | 287 } |
| OLD | NEW |