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

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

Issue 2609103002: PaymentApp: Add PaymentAppProvider class. (Closed)
Patch Set: Remove override keyword Created 3 years, 11 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
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("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//ppapi/features/features.gni") 8 import("//ppapi/features/features.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/WebKit/public/public_features.gni") 10 import("//third_party/WebKit/public/public_features.gni")
(...skipping 968 matching lines...) Expand 10 before | Expand all | Expand 10 after
979 "notifications/platform_notification_context_impl.cc", 979 "notifications/platform_notification_context_impl.cc",
980 "notifications/platform_notification_context_impl.h", 980 "notifications/platform_notification_context_impl.h",
981 "notifications/type_converters.cc", 981 "notifications/type_converters.cc",
982 "notifications/type_converters.h", 982 "notifications/type_converters.h",
983 "payments/payment_app_context_impl.cc", 983 "payments/payment_app_context_impl.cc",
984 "payments/payment_app_context_impl.h", 984 "payments/payment_app_context_impl.h",
985 "payments/payment_app_database.cc", 985 "payments/payment_app_database.cc",
986 "payments/payment_app_database.h", 986 "payments/payment_app_database.h",
987 "payments/payment_app_manager.cc", 987 "payments/payment_app_manager.cc",
988 "payments/payment_app_manager.h", 988 "payments/payment_app_manager.h",
989 "payments/payment_app_provider_impl.cc",
990 "payments/payment_app_provider_impl.h",
989 "permissions/permission_service_context.cc", 991 "permissions/permission_service_context.cc",
990 "permissions/permission_service_context.h", 992 "permissions/permission_service_context.h",
991 "permissions/permission_service_impl.cc", 993 "permissions/permission_service_impl.cc",
992 "permissions/permission_service_impl.h", 994 "permissions/permission_service_impl.h",
993 "presentation/presentation_service_impl.cc", 995 "presentation/presentation_service_impl.cc",
994 "presentation/presentation_service_impl.h", 996 "presentation/presentation_service_impl.h",
995 "presentation/presentation_type_converters.cc", 997 "presentation/presentation_type_converters.cc",
996 "presentation/presentation_type_converters.h", 998 "presentation/presentation_type_converters.h",
997 "profiler_controller_impl.cc", 999 "profiler_controller_impl.cc",
998 "profiler_controller_impl.h", 1000 "profiler_controller_impl.h",
(...skipping 993 matching lines...) Expand 10 before | Expand all | Expand 10 after
1992 if (!is_component_build) { 1994 if (!is_component_build) {
1993 public_deps = [ 1995 public_deps = [
1994 ":browser", 1996 ":browser",
1995 ] 1997 ]
1996 } else { 1998 } else {
1997 public_deps = [ 1999 public_deps = [
1998 "//third_party/leveldatabase", 2000 "//third_party/leveldatabase",
1999 ] 2001 ]
2000 } 2002 }
2001 } 2003 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698