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

Unified Diff: blimp/client/BUILD.gn

Issue 1687393002: Add assigner support to Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix evil build break? Created 4 years, 10 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 | « blimp/BUILD.gn ('k') | blimp/client/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/BUILD.gn
diff --git a/blimp/client/BUILD.gn b/blimp/client/BUILD.gn
index d629ef8ac47133aedadc4b4a4477151bf73a88b4..80a164a67641b42893d8b10472e2bf27df0743a3 100644
--- a/blimp/client/BUILD.gn
+++ b/blimp/client/BUILD.gn
@@ -44,6 +44,23 @@ source_set("blimp_client") {
]
}
+source_set("blimp_client_unit_tests") {
+ testonly = true
+
+ sources = [
+ "session/assignment_source_unittest.cc",
+ ]
+
+ deps = [
+ ":blimp_client",
+ "//base",
+ "//base/test:run_all_unittests",
+ "//base/test:test_support",
+ "//testing/gmock",
+ "//testing/gtest",
+ ]
+}
+
source_set("app_unit_tests") {
testonly = true
@@ -258,7 +275,15 @@ if (is_android) {
]
}
+ java_cpp_enum("blimp_java_enums_srcjar") {
+ sources = [
+ "session/assignment_source.h",
+ ]
+ }
+
android_library("blimp_java") {
+ srcjar_deps = [ ":blimp_java_enums_srcjar" ]
+
deps = [
":blimp_java_resources",
"//base:base_java",
@@ -342,6 +367,7 @@ if (is_android) {
":blimp_java",
":blimp_java_resources",
"//base:base_java",
+ "//net/android:net_java",
google_play_services_resources,
]
apk_name = "Blimp"
« no previous file with comments | « blimp/BUILD.gn ('k') | blimp/client/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698