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

Side by Side 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 unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698