| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/android/rules.gni") |
| 6 |
| 7 android_resources("autofill_java_resources") { |
| 8 custom_package = "org.chromium.components.autofill" |
| 9 resource_dirs = [ "java/res" ] |
| 10 } |
| 11 |
| 12 android_library("autofill_java") { |
| 13 deps = [ |
| 14 ":autofill_java_resources", |
| 15 "//base:base_java", |
| 16 "//ui/android:ui_java", |
| 17 ] |
| 18 java_files = [ |
| 19 "java/src/org/chromium/components/autofill/AutofillDelegate.java", |
| 20 "java/src/org/chromium/components/autofill/AutofillKeyboardAccessory.java", |
| 21 "java/src/org/chromium/components/autofill/AutofillPopup.java", |
| 22 "java/src/org/chromium/components/autofill/AutofillSuggestion.java", |
| 23 ] |
| 24 } |
| OLD | NEW |