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

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: Build the ProxyConfigService on the main thread. 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
Index: blimp/client/BUILD.gn
diff --git a/blimp/client/BUILD.gn b/blimp/client/BUILD.gn
index e817cd37ad91e370fefcbf1486e2e4907a295cdb..f84b7333a0cc4670935e07ba5070d85909606f41 100644
--- a/blimp/client/BUILD.gn
+++ b/blimp/client/BUILD.gn
@@ -43,6 +43,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
@@ -255,7 +272,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",
@@ -339,6 +364,7 @@ if (is_android) {
":blimp_java",
":blimp_java_resources",
"//base:base_java",
+ "//net/android:net_java",
google_play_services_resources,
]
apk_name = "Blimp"

Powered by Google App Engine
This is Rietveld 408576698