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

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

Issue 2611253004: [Payment Request] Change the lifetime management of PaymentRequestImpl (Closed)
Patch Set: PaymentRequestImpl -> PaymentRequest 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
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 3562 matching lines...) Expand 10 before | Expand all | Expand 10 after
3573 } 3573 }
3574 } 3574 }
3575 if (use_x11) { 3575 if (use_x11) {
3576 configs += [ "//build/config/linux:x11" ] 3576 configs += [ "//build/config/linux:x11" ]
3577 deps += [ "//ui/gfx/x" ] 3577 deps += [ "//ui/gfx/x" ]
3578 } 3578 }
3579 } 3579 }
3580 3580
3581 if (is_linux || is_win) { 3581 if (is_linux || is_win) {
3582 sources += [ 3582 sources += [
3583 "payments/payment_request_impl.cc", 3583 "payments/chrome_payment_request_delegate.cc",
3584 "payments/payment_request_impl.h", 3584 "payments/chrome_payment_request_delegate.h",
3585 "payments/payment_request_factory.cc",
3586 "payments/payment_request_factory.h",
3585 "renderer_context_menu/spelling_options_submenu_observer.cc", 3587 "renderer_context_menu/spelling_options_submenu_observer.cc",
3586 "renderer_context_menu/spelling_options_submenu_observer.h", 3588 "renderer_context_menu/spelling_options_submenu_observer.h",
3587 ] 3589 ]
3590 deps += [ "//components/payments:payment_request_impl" ]
3588 } 3591 }
3589 3592
3590 if (is_desktop_linux) { 3593 if (is_desktop_linux) {
3591 # Desktop linux, doesn't count ChromeOS. 3594 # Desktop linux, doesn't count ChromeOS.
3592 sources += [ 3595 sources += [
3593 "first_run/upgrade_util.cc", 3596 "first_run/upgrade_util.cc",
3594 "first_run/upgrade_util_linux.cc", 3597 "first_run/upgrade_util_linux.cc",
3595 "first_run/upgrade_util_linux.h", 3598 "first_run/upgrade_util_linux.h",
3596 "icon_loader_auralinux.cc", 3599 "icon_loader_auralinux.cc",
3597 "password_manager/native_backend_kwallet_x.cc", 3600 "password_manager/native_backend_kwallet_x.cc",
(...skipping 892 matching lines...) Expand 10 before | Expand all | Expand 10 after
4490 "media/pepper_cdm_test_constants.cc", 4493 "media/pepper_cdm_test_constants.cc",
4491 "media/pepper_cdm_test_constants.h", 4494 "media/pepper_cdm_test_constants.h",
4492 ] 4495 ]
4493 } 4496 }
4494 } 4497 }
4495 4498
4496 service_manifest("preferences_manifest") { 4499 service_manifest("preferences_manifest") {
4497 name = "preferences" 4500 name = "preferences"
4498 source = "prefs/preferences_manifest.json" 4501 source = "prefs/preferences_manifest.json"
4499 } 4502 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698