OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 assert(is_android) | 8 assert(is_android) |
9 | 9 |
10 component("android") { | 10 component("android") { |
11 output_name = "ui_android" | 11 output_name = "ui_android" |
12 sources = [ | 12 sources = [ |
13 "animation_utils.h", | 13 "animation_utils.h", |
14 "edge_effect.cc", | 14 "edge_effect.cc", |
15 "edge_effect.h", | 15 "edge_effect.h", |
16 "edge_effect_base.cc", | 16 "edge_effect_base.cc", |
17 "edge_effect_base.h", | 17 "edge_effect_base.h", |
18 "edge_effect_l.cc", | 18 "edge_effect_l.cc", |
19 "edge_effect_l.h", | 19 "edge_effect_l.h", |
20 "overscroll_glow.cc", | 20 "overscroll_glow.cc", |
21 "overscroll_glow.h", | 21 "overscroll_glow.h", |
22 "overscroll_refresh.cc", | 22 "overscroll_refresh.cc", |
23 "overscroll_refresh.h", | 23 "overscroll_refresh.h", |
| 24 "resources/crushed_sprite_resource.cc", |
| 25 "resources/crushed_sprite_resource.h", |
24 "resources/resource_manager.cc", | 26 "resources/resource_manager.cc", |
25 "resources/resource_manager.h", | 27 "resources/resource_manager.h", |
26 "resources/resource_manager_impl.cc", | 28 "resources/resource_manager_impl.cc", |
27 "resources/resource_manager_impl.h", | 29 "resources/resource_manager_impl.h", |
28 "resources/ui_resource_provider.h", | 30 "resources/ui_resource_provider.h", |
29 "ui_android_export.h", | 31 "ui_android_export.h", |
30 "ui_android_jni_registrar.cc", | 32 "ui_android_jni_registrar.cc", |
31 "ui_android_jni_registrar.h", | 33 "ui_android_jni_registrar.h", |
32 "view_android.cc", | 34 "view_android.cc", |
33 "view_android.h", | 35 "view_android.h", |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 "//cc:test_support", | 174 "//cc:test_support", |
173 "//skia", | 175 "//skia", |
174 "//testing/gmock", | 176 "//testing/gmock", |
175 "//testing/gtest", | 177 "//testing/gtest", |
176 "//ui/base", | 178 "//ui/base", |
177 "//ui/gfx", | 179 "//ui/gfx", |
178 "//ui/resources:ui_test_pak", | 180 "//ui/resources:ui_test_pak", |
179 ] | 181 ] |
180 apk_deps = [ ":ui_java" ] | 182 apk_deps = [ ":ui_java" ] |
181 } | 183 } |
OLD | NEW |