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

Side by Side Diff: ui/android/BUILD.gn

Issue 824263004: Move the test template to //testing/test.gni (part 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months 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 unified diff | Download patch
OLDNEW
1 import("//build/config/android/rules.gni") 1 import("//build/config/android/rules.gni")
2 import("//testing/rules.gni")
2 3
3 assert(is_android) 4 assert(is_android)
4 5
5 component("android") { 6 component("android") {
6 output_name = "ui_android" 7 output_name = "ui_android"
7 sources = [ 8 sources = [
8 "resources/resource_manager.cc", 9 "resources/resource_manager.cc",
9 "resources/resource_manager.h", 10 "resources/resource_manager.h",
10 "resources/resource_manager_impl.cc", 11 "resources/resource_manager_impl.cc",
11 "resources/resource_manager_impl.h", 12 "resources/resource_manager_impl.h",
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 sources = [ 142 sources = [
142 "resources/resource_manager_impl_unittest.cc", 143 "resources/resource_manager_impl_unittest.cc",
143 "run_all_unittests.cc", 144 "run_all_unittests.cc",
144 ] 145 ]
145 deps = [ 146 deps = [
146 ":android", 147 ":android",
147 "//base", 148 "//base",
148 "//base/test:test_support", 149 "//base/test:test_support",
149 "//cc", 150 "//cc",
150 "//skia", 151 "//skia",
151 "//testing/android:native_test_native_code",
152 "//testing/gtest", 152 "//testing/gtest",
153 "//ui/base", 153 "//ui/base",
154 "//ui/gfx", 154 "//ui/gfx",
155 "//ui/resources:ui_test_pak", 155 "//ui/resources:ui_test_pak",
156 ] 156 ]
157 apk_deps = [ ":ui_java" ]
157 } 158 }
158
159 unittest_apk("ui_android_unittests_apk") {
160 deps = [
161 ":ui_android_unittests",
162 ":ui_java",
163 ]
164 unittests_dep = ":ui_android_unittests"
165 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698