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

Unified Diff: blimp/BUILD.gn

Issue 2241623002: blimp: Move compositing, input and render widget feature to client/core. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gn files Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | blimp/client/BUILD.gn » ('j') | blimp/client/app/android/blimp_view.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/BUILD.gn
diff --git a/blimp/BUILD.gn b/blimp/BUILD.gn
index a4f74acccee4765600eab4532c76adcf2399ed99..cf8ce500c80f69790017f1ca1eebcf6d08e435af 100644
--- a/blimp/BUILD.gn
+++ b/blimp/BUILD.gn
@@ -6,6 +6,11 @@ import("//build/config/chrome_build.gni")
import("//build/config/ui.gni")
import("//testing/test.gni")
+if (is_android) {
+ import("//build/config/android/config.gni")
+ import("//build/config/android/rules.gni")
+}
+
# Convenience meta-target for all of Blimp's production & test code.
group("blimp") {
# In spite of the name, this really just means that non-test targets
@@ -73,6 +78,24 @@ test("blimp_unittests") {
if (is_linux) {
deps += [ "//blimp/engine:unit_tests" ]
}
+
+ if (is_android) {
+ deps += [ ":blimp_unittests_java_deps" ]
+ }
+}
+
+if (is_android) {
+ java_group("blimp_unittests_java_deps") {
nyquist 2016/08/16 23:14:57 Could you add a comment as to why we have this wei
Khushal 2016/08/18 03:16:32 Done.
+ testonly = true
+ visibility = [ ":*" ]
+
+ deps = [
+ "//base:base_java",
+ "//blimp/client/core:core_java",
+ "//net/android:net_java",
+ "//ui/android:ui_java",
+ ]
+ }
}
if (is_linux) {
« no previous file with comments | « no previous file | blimp/client/BUILD.gn » ('j') | blimp/client/app/android/blimp_view.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698