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

Unified Diff: blimp/client/public/BUILD.gn

Issue 2211613002: Add AssignmentSource to BlimpClientContextImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge origin/master 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 | « blimp/client/core/session/assignment_source_unittest.cc ('k') | blimp/client/public/blimp_client_context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/public/BUILD.gn
diff --git a/blimp/client/public/BUILD.gn b/blimp/client/public/BUILD.gn
index 38142990e55d440222a41093aa1a99be019c4052..b9023b139d061fb1f337642751715ad9ba0717cf 100644
--- a/blimp/client/public/BUILD.gn
+++ b/blimp/client/public/BUILD.gn
@@ -33,11 +33,14 @@ source_set("public_headers") {
"contents/blimp_contents_observer.cc",
"contents/blimp_contents_observer.h",
"contents/blimp_navigation_controller.h",
+ "session/assignment.cc",
+ "session/assignment.h",
]
public_deps = [
"//base",
"//components/keyed_service/core",
+ "//net",
"//url",
]
@@ -76,5 +79,21 @@ if (is_android) {
"android/java/src/org/chromium/blimp_public/BlimpClientContextDelegate.java",
"android/java/src/org/chromium/blimp_public/BlimpSettingsCallbacks.java",
]
+
+ deps = [
+ "//third_party/android_tools:android_support_annotations_java",
+ ]
+
+ # The enums are added here for convenience for embedders, so they can still
+ # only depend on :public_java.
+ srcjar_deps = [ ":public_headers_java_enums_srcjar" ]
+ }
+
+ java_cpp_enum("public_headers_java_enums_srcjar") {
+ visibility = [ ":*" ]
+
+ sources = [
+ "session/assignment.h",
+ ]
}
}
« no previous file with comments | « blimp/client/core/session/assignment_source_unittest.cc ('k') | blimp/client/public/blimp_client_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698