Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Unified Diff: ui/android/BUILD.gn

Issue 755643004: Replace SystemUIResourceManager with ResourceManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix clang build failure Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/browser/android/ui_resource_provider.h ('k') | ui/android/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/android/BUILD.gn
diff --git a/ui/android/BUILD.gn b/ui/android/BUILD.gn
index 70082d671a8aaa9e00585e22c1868c20de3df166..1cf50e557340559c028686526a2d836859cc684b 100644
--- a/ui/android/BUILD.gn
+++ b/ui/android/BUILD.gn
@@ -9,6 +9,9 @@ component("android") {
"resources/resource_manager.h",
"resources/ui_resource_android.cc",
"resources/ui_resource_android.h",
+ "resources/ui_resource_client_android.h",
+ "resources/ui_resource_provider.cc",
+ "resources/ui_resource_provider.h",
"ui_android_export.h",
"ui_android_jni_registrar.cc",
"ui_android_jni_registrar.h",
@@ -131,3 +134,30 @@ android_library("ui_javatests") {
"//base:base_java_test_support",
]
}
+
+test("ui_android_unittests") {
+ sources = [
+ "resources/resource_manager_unittest.cc",
+ "run_all_unittests.cc",
+ ]
+ deps = [
+ ":android",
+ "//base",
+ "//base/test:test_support",
+ "//cc",
+ "//skia",
+ "//testing/android:native_test_native_code",
+ "//testing/gtest",
+ "//ui/base",
+ "//ui/gfx",
+ "//ui/resources:ui_test_pak",
+ ]
+}
+
+unittest_apk("ui_android_unittests_apk") {
+ deps = [
+ ":ui_android_unittests",
+ ":ui_java",
+ ]
+ unittests_dep = ":ui_android_unittests"
+}
« no previous file with comments | « content/public/browser/android/ui_resource_provider.h ('k') | ui/android/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698