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

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
Index: blimp/client/public/BUILD.gn
diff --git a/blimp/client/public/BUILD.gn b/blimp/client/public/BUILD.gn
index 3b7879097e5fe916b9f1e85ce45d4bde05326643..4b4df7b44919c49ec716e8940d9b8893d959abd6 100644
--- a/blimp/client/public/BUILD.gn
+++ b/blimp/client/public/BUILD.gn
@@ -32,11 +32,14 @@ source_set("public_headers") {
"contents/blimp_contents.h",
"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",
]
@@ -75,5 +78,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",
+ ]
}
}

Powered by Google App Engine
This is Rietveld 408576698