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

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

Issue 2382913004: Move autofill from ui/ to components/ (Closed)
Patch Set: move dimens cleanly Created 4 years, 2 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: components/autofill/android/BUILD.gn
diff --git a/components/autofill/android/BUILD.gn b/components/autofill/android/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..54889a8605d7be24865f4da9e20492529c132cd4
--- /dev/null
+++ b/components/autofill/android/BUILD.gn
@@ -0,0 +1,24 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/config/android/rules.gni")
+
+android_resources("autofill_java_resources") {
+ custom_package = "org.chromium.components.autofill"
+ resource_dirs = [ "java/res" ]
+}
+
+android_library("autofill_java") {
+ deps = [
+ ":autofill_java_resources",
+ "//base:base_java",
+ "//ui/android:ui_java",
+ ]
+ java_files = [
+ "java/src/org/chromium/components/autofill/AutofillDelegate.java",
+ "java/src/org/chromium/components/autofill/AutofillKeyboardAccessory.java",
+ "java/src/org/chromium/components/autofill/AutofillPopup.java",
+ "java/src/org/chromium/components/autofill/AutofillSuggestion.java",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698