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

Unified Diff: components/location/android/BUILD.gn

Issue 2709883005: Stubs for triggering the LSD in Clank (Closed)
Patch Set: Handle review comments Created 3 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 | « chrome/browser/android/mock_location_settings.cc ('k') | components/location/android/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/location/android/BUILD.gn
diff --git a/components/location/android/BUILD.gn b/components/location/android/BUILD.gn
index 2ea03badd7a318aef569da2f1062c27f6fdf6594..5ee332df01a792649591e16462f37b78cbda915c 100644
--- a/components/location/android/BUILD.gn
+++ b/components/location/android/BUILD.gn
@@ -4,10 +4,28 @@
import("//build/config/android/rules.gni")
+java_cpp_enum("location_settings_dialog_context_java") {
Ted C 2017/03/02 16:55:48 I "think" you should be able to just have one java
qfiard 2017/03/02 20:40:28 Done.
+ sources = [
+ "location_settings_dialog_context.h",
+ ]
+}
+
+java_cpp_enum("location_settings_dialog_outcome_java") {
+ sources = [
+ "location_settings_dialog_outcome.h",
+ ]
+}
+
android_library("location_java") {
deps = [
"//base:base_java",
+ "//third_party/android_tools:android_support_annotations_java",
+ "//ui/android:ui_java",
]
java_files =
[ "java/src/org/chromium/components/location/LocationUtils.java" ]
+ srcjar_deps = [
+ ":location_settings_dialog_context_java",
+ ":location_settings_dialog_outcome_java",
+ ]
}
« no previous file with comments | « chrome/browser/android/mock_location_settings.cc ('k') | components/location/android/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698