Chromium Code Reviews| 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..aef4f5c6fc0d5e5d593fce19c3cfeeae2028938b |
| --- /dev/null |
| +++ b/components/autofill/android/BUILD.gn |
| @@ -0,0 +1,27 @@ |
| +# 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" ] |
| + deps = [ |
| + "//ui/android:ui_java_resources", |
|
Ted C
2016/10/04 20:39:39
Is this needed for dimens.xml?
Looks like some of
wychen
2016/10/04 21:01:03
I've moved them to components as well.
One downsi
|
| + ] |
| +} |
| + |
| +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", |
| + ] |
| +} |