| 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 "resources/resource_manager.cc", | 13 "resources/resource_manager.cc", |
| 14 "resources/resource_manager.h", | 14 "resources/resource_manager.h", |
| 15 "resources/resource_manager_impl.cc", | 15 "resources/resource_manager_impl.cc", |
| 16 "resources/resource_manager_impl.h", | 16 "resources/resource_manager_impl.h", |
| 17 "resources/ui_resource_android.cc", | 17 "resources/ui_resource_android.cc", |
| 18 "resources/ui_resource_android.h", | 18 "resources/ui_resource_android.h", |
| 19 "resources/ui_resource_client_android.h", | 19 "resources/ui_resource_client_android.h", |
| 20 "resources/ui_resource_provider.cc", | 20 "resources/ui_resource_provider.cc", |
| 21 "resources/ui_resource_provider.h", | 21 "resources/ui_resource_provider.h", |
| 22 "screen_android.cc", |
| 22 "ui_android_export.h", | 23 "ui_android_export.h", |
| 23 "ui_android_jni_registrar.cc", | 24 "ui_android_jni_registrar.cc", |
| 24 "ui_android_jni_registrar.h", | 25 "ui_android_jni_registrar.h", |
| 25 "view_android.cc", | 26 "view_android.cc", |
| 26 "view_android.h", | 27 "view_android.h", |
| 27 "window_android.cc", | 28 "window_android.cc", |
| 28 "window_android.h", | 29 "window_android.h", |
| 29 "window_android_compositor.h", | 30 "window_android_compositor.h", |
| 30 "window_android_observer.h", | 31 "window_android_observer.h", |
| 31 ] | 32 ] |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 "//base/test:test_support", | 162 "//base/test:test_support", |
| 162 "//cc", | 163 "//cc", |
| 163 "//skia", | 164 "//skia", |
| 164 "//testing/gtest", | 165 "//testing/gtest", |
| 165 "//ui/base", | 166 "//ui/base", |
| 166 "//ui/gfx", | 167 "//ui/gfx", |
| 167 "//ui/resources:ui_test_pak", | 168 "//ui/resources:ui_test_pak", |
| 168 ] | 169 ] |
| 169 apk_deps = [ ":ui_java" ] | 170 apk_deps = [ ":ui_java" ] |
| 170 } | 171 } |
| OLD | NEW |