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

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

Issue 2611253004: [Payment Request] Change the lifetime management of PaymentRequestImpl (Closed)
Patch Set: addressed comments 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/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 1424 matching lines...) Expand 10 before | Expand all | Expand 10 after
1435 "//components/offline_pages/core/request_header:request_header", 1435 "//components/offline_pages/core/request_header:request_header",
1436 "//components/omnibox/browser", 1436 "//components/omnibox/browser",
1437 "//components/os_crypt", 1437 "//components/os_crypt",
1438 "//components/packed_ct_ev_whitelist", 1438 "//components/packed_ct_ev_whitelist",
1439 "//components/password_manager/content/browser", 1439 "//components/password_manager/content/browser",
1440 "//components/password_manager/core/browser", 1440 "//components/password_manager/core/browser",
1441 "//components/password_manager/core/common", 1441 "//components/password_manager/core/common",
1442 "//components/password_manager/sync/browser", 1442 "//components/password_manager/sync/browser",
1443 "//components/payments:payment_app", 1443 "//components/payments:payment_app",
1444 "//components/payments:payment_request", 1444 "//components/payments:payment_request",
1445 "//components/payments:payment_request_impl",
1445 "//components/policy:generated", 1446 "//components/policy:generated",
1446 "//components/policy/core/browser", 1447 "//components/policy/core/browser",
1447 "//components/policy/proto", 1448 "//components/policy/proto",
1448 "//components/prefs:prefs", 1449 "//components/prefs:prefs",
1449 "//components/previews/core", 1450 "//components/previews/core",
1450 "//components/profile_metrics", 1451 "//components/profile_metrics",
1451 "//components/proxy_config", 1452 "//components/proxy_config",
1452 "//components/query_parser", 1453 "//components/query_parser",
1453 "//components/rappor", 1454 "//components/rappor",
1454 "//components/rappor:rappor_recorder", 1455 "//components/rappor:rappor_recorder",
(...skipping 2118 matching lines...) Expand 10 before | Expand all | Expand 10 after
3573 } 3574 }
3574 } 3575 }
3575 if (use_x11) { 3576 if (use_x11) {
3576 configs += [ "//build/config/linux:x11" ] 3577 configs += [ "//build/config/linux:x11" ]
3577 deps += [ "//ui/gfx/x" ] 3578 deps += [ "//ui/gfx/x" ]
3578 } 3579 }
3579 } 3580 }
3580 3581
3581 if (is_linux || is_win) { 3582 if (is_linux || is_win) {
3582 sources += [ 3583 sources += [
3583 "payments/payment_request_impl.cc", 3584 "payments/chrome_payment_request_delegate.cc",
3584 "payments/payment_request_impl.h", 3585 "payments/chrome_payment_request_delegate.h",
3586 "payments/payment_request_factory.cc",
3587 "payments/payment_request_factory.h",
3585 "renderer_context_menu/spelling_options_submenu_observer.cc", 3588 "renderer_context_menu/spelling_options_submenu_observer.cc",
3586 "renderer_context_menu/spelling_options_submenu_observer.h", 3589 "renderer_context_menu/spelling_options_submenu_observer.h",
3587 ] 3590 ]
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",
(...skipping 895 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

Powered by Google App Engine
This is Rietveld 408576698