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

Side by Side Diff: ios/chrome/browser/payments/BUILD.gn

Issue 2968503002: [Payment Request] CanMakePayment (Closed)
Patch Set: Created 3 years, 5 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
« no previous file with comments | « no previous file | ios/chrome/browser/payments/ios_can_make_payment_query_factory.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//ios/web/js_compile.gni") 5 import("//ios/web/js_compile.gni")
6 6
7 source_set("payments") { 7 source_set("payments") {
8 configs += [ "//build/config/compiler:enable_arc" ] 8 configs += [ "//build/config/compiler:enable_arc" ]
9 sources = [ 9 sources = [
10 "ios_can_make_payment_query_factory.cc",
11 "ios_can_make_payment_query_factory.h",
10 "payment_request.h", 12 "payment_request.h",
11 "payment_request.mm", 13 "payment_request.mm",
12 "payment_request_util.h", 14 "payment_request_util.h",
13 "payment_request_util.mm", 15 "payment_request_util.mm",
14 ] 16 ]
15 deps = [ 17 deps = [
16 "//base", 18 "//base",
17 "//components/autofill/core/browser", 19 "//components/autofill/core/browser",
20 "//components/keyed_service/ios",
18 "//components/payments/core", 21 "//components/payments/core",
19 "//components/strings:components_strings_grit", 22 "//components/strings:components_strings_grit",
20 "//ios/chrome/browser", 23 "//ios/chrome/browser",
21 "//ios/chrome/browser/autofill", 24 "//ios/chrome/browser/autofill",
25 "//ios/chrome/browser/browser_state",
22 "//ios/web", 26 "//ios/web",
23 "//ui/base", 27 "//ui/base",
24 ] 28 ]
25 libs = [ "UIKit.framework" ] 29 libs = [ "UIKit.framework" ]
26 } 30 }
27 31
28 source_set("unit_tests") { 32 source_set("unit_tests") {
29 configs += [ "//build/config/compiler:enable_arc" ] 33 configs += [ "//build/config/compiler:enable_arc" ]
30 testonly = true 34 testonly = true
31 sources = [ 35 sources = [
(...skipping 23 matching lines...) Expand all
55 "test_payment_request.mm", 59 "test_payment_request.mm",
56 ] 60 ]
57 deps = [ 61 deps = [
58 ":payments", 62 ":payments",
59 "//base", 63 "//base",
60 "//components/autofill/core/browser", 64 "//components/autofill/core/browser",
61 "//components/payments/core", 65 "//components/payments/core",
62 "//ios/web", 66 "//ios/web",
63 ] 67 ]
64 } 68 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/payments/ios_can_make_payment_query_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698