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

Side by Side Diff: content/browser/BUILD.gn

Issue 2925063003: [Payments] Implement payment instrument icons (Closed)
Patch Set: fix comment lines Created 3 years, 6 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 | « components/payments/mojom/payment_app.mojom ('k') | content/browser/payments/payment_app.proto » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//gpu/vulkan/features.gni") 7 import("//gpu/vulkan/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//printing/features/features.gni") 10 import("//printing/features/features.gni")
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 "//mojo/public/cpp/bindings", 102 "//mojo/public/cpp/bindings",
103 "//mojo/public/js", 103 "//mojo/public/js",
104 "//net", 104 "//net",
105 "//net:extras", 105 "//net:extras",
106 "//net:http_server", 106 "//net:http_server",
107 "//ppapi/features", 107 "//ppapi/features",
108 "//printing/features", 108 "//printing/features",
109 "//services/catalog:constants", 109 "//services/catalog:constants",
110 "//services/catalog/public/cpp", 110 "//services/catalog/public/cpp",
111 "//services/catalog/public/interfaces:constants", 111 "//services/catalog/public/interfaces:constants",
112 "//services/data_decoder/public/cpp",
112 "//services/data_decoder/public/interfaces", 113 "//services/data_decoder/public/interfaces",
113 "//services/device:lib", 114 "//services/device:lib",
114 "//services/device/public/interfaces", 115 "//services/device/public/interfaces",
115 "//services/device/public/interfaces:constants", 116 "//services/device/public/interfaces:constants",
116 "//services/file:lib", 117 "//services/file:lib",
117 "//services/file/public/interfaces", 118 "//services/file/public/interfaces",
118 "//services/resource_coordinator:lib", 119 "//services/resource_coordinator:lib",
119 "//services/resource_coordinator/public/cpp:resource_coordinator_cpp", 120 "//services/resource_coordinator/public/cpp:resource_coordinator_cpp",
120 "//services/service_manager", 121 "//services/service_manager",
121 "//services/service_manager/embedder", 122 "//services/service_manager/embedder",
(...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after
1060 "notifications/platform_notification_context_impl.cc", 1061 "notifications/platform_notification_context_impl.cc",
1061 "notifications/platform_notification_context_impl.h", 1062 "notifications/platform_notification_context_impl.h",
1062 "notifications/type_converters.cc", 1063 "notifications/type_converters.cc",
1063 "notifications/type_converters.h", 1064 "notifications/type_converters.h",
1064 "payments/payment_app_context_impl.cc", 1065 "payments/payment_app_context_impl.cc",
1065 "payments/payment_app_context_impl.h", 1066 "payments/payment_app_context_impl.h",
1066 "payments/payment_app_database.cc", 1067 "payments/payment_app_database.cc",
1067 "payments/payment_app_database.h", 1068 "payments/payment_app_database.h",
1068 "payments/payment_app_provider_impl.cc", 1069 "payments/payment_app_provider_impl.cc",
1069 "payments/payment_app_provider_impl.h", 1070 "payments/payment_app_provider_impl.h",
1071 "payments/payment_instrument_icon_fetcher.cc",
1072 "payments/payment_instrument_icon_fetcher.h",
1070 "payments/payment_manager.cc", 1073 "payments/payment_manager.cc",
1071 "payments/payment_manager.h", 1074 "payments/payment_manager.h",
1072 "permissions/permission_service_context.cc", 1075 "permissions/permission_service_context.cc",
1073 "permissions/permission_service_context.h", 1076 "permissions/permission_service_context.h",
1074 "permissions/permission_service_impl.cc", 1077 "permissions/permission_service_impl.cc",
1075 "permissions/permission_service_impl.h", 1078 "permissions/permission_service_impl.h",
1076 "presentation/presentation_service_impl.cc", 1079 "presentation/presentation_service_impl.cc",
1077 "presentation/presentation_service_impl.h", 1080 "presentation/presentation_service_impl.h",
1078 "profiler_controller_impl.cc", 1081 "profiler_controller_impl.cc",
1079 "profiler_controller_impl.h", 1082 "profiler_controller_impl.h",
(...skipping 1067 matching lines...) Expand 10 before | Expand all | Expand 10 after
2147 if (!is_component_build) { 2150 if (!is_component_build) {
2148 public_deps = [ 2151 public_deps = [
2149 ":browser", 2152 ":browser",
2150 ] 2153 ]
2151 } else { 2154 } else {
2152 public_deps = [ 2155 public_deps = [
2153 "//third_party/leveldatabase", 2156 "//third_party/leveldatabase",
2154 ] 2157 ]
2155 } 2158 }
2156 } 2159 }
OLDNEW
« no previous file with comments | « components/payments/mojom/payment_app.mojom ('k') | content/browser/payments/payment_app.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698