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

Side by Side Diff: components/autofill/android/BUILD.gn

Issue 2579623003: [Autofill] Update credit card icons to match payments. (Closed)
Patch Set: Created 4 years 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
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/rules.gni") 5 import("//build/config/android/rules.gni")
6 6
7 android_resources("autofill_java_resources") { 7 android_resources("autofill_java_resources") {
8 custom_package = "org.chromium.components.autofill" 8 custom_package = "org.chromium.components.autofill"
9 resource_dirs = [ "java/res" ] 9 resource_dirs = [ "java/res" ]
10 } 10 }
11 11
12 android_library("autofill_java") { 12 android_library("autofill_java") {
13 deps = [ 13 deps = [
14 ":autofill_java_resources", 14 ":autofill_java_resources",
15 "//base:base_java", 15 "//base:base_java",
16 "//third_party/android_tools:android_support_v7_appcompat_java",
16 "//ui/android:ui_java", 17 "//ui/android:ui_java",
17 ] 18 ]
18 java_files = [ 19 java_files = [
19 "java/src/org/chromium/components/autofill/AutofillDelegate.java", 20 "java/src/org/chromium/components/autofill/AutofillDelegate.java",
20 "java/src/org/chromium/components/autofill/AutofillKeyboardAccessory.java", 21 "java/src/org/chromium/components/autofill/AutofillKeyboardAccessory.java",
21 "java/src/org/chromium/components/autofill/AutofillPopup.java", 22 "java/src/org/chromium/components/autofill/AutofillPopup.java",
22 "java/src/org/chromium/components/autofill/AutofillSuggestion.java", 23 "java/src/org/chromium/components/autofill/AutofillSuggestion.java",
23 ] 24 ]
24 } 25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698