Chromium Code Reviews| 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 deps = [ | |
| 11 "//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
| |
| 12 ] | |
| 13 } | |
| 14 | |
| 15 android_library("autofill_java") { | |
| 16 deps = [ | |
| 17 ":autofill_java_resources", | |
| 18 "//base:base_java", | |
| 19 "//ui/android:ui_java", | |
| 20 ] | |
| 21 java_files = [ | |
| 22 "java/src/org/chromium/components/autofill/AutofillDelegate.java", | |
| 23 "java/src/org/chromium/components/autofill/AutofillKeyboardAccessory.java", | |
| 24 "java/src/org/chromium/components/autofill/AutofillPopup.java", | |
| 25 "java/src/org/chromium/components/autofill/AutofillSuggestion.java", | |
| 26 ] | |
| 27 } | |
| OLD | NEW |