| 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",
|
| + ]
|
| +}
|
|
|