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

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

Issue 2687033004: [WebPayments] Enabling PaymentRequest on Mac (Closed)
Patch Set: grouping deps with sources Created 3 years, 10 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 3578 matching lines...) Expand 10 before | Expand all | Expand 10 after
3589 if (use_dbus) { 3589 if (use_dbus) {
3590 deps += [ "//dbus" ] 3590 deps += [ "//dbus" ]
3591 } 3591 }
3592 } 3592 }
3593 if (use_x11) { 3593 if (use_x11) {
3594 configs += [ "//build/config/linux:x11" ] 3594 configs += [ "//build/config/linux:x11" ]
3595 deps += [ "//ui/gfx/x" ] 3595 deps += [ "//ui/gfx/x" ]
3596 } 3596 }
3597 } 3597 }
3598 3598
3599 if (is_linux || is_win) { 3599 if (is_linux || is_win || is_mac) {
3600 sources += [ 3600 sources += [
3601 "payments/chrome_payment_request_delegate.cc", 3601 "payments/chrome_payment_request_delegate.cc",
3602 "payments/chrome_payment_request_delegate.h", 3602 "payments/chrome_payment_request_delegate.h",
3603 "payments/payment_request_factory.cc", 3603 "payments/payment_request_factory.cc",
3604 "payments/payment_request_factory.h", 3604 "payments/payment_request_factory.h",
3605 "renderer_context_menu/spelling_options_submenu_observer.cc",
3606 "renderer_context_menu/spelling_options_submenu_observer.h",
3607 ] 3605 ]
3608 deps += [ "//components/payments:payment_request_impl" ] 3606 deps += [ "//components/payments:payment_request_impl" ]
3609 } 3607 }
3610 3608
3609 if (is_linux || is_win) {
3610 sources += [
3611 "renderer_context_menu/spelling_options_submenu_observer.cc",
3612 "renderer_context_menu/spelling_options_submenu_observer.h",
3613 ]
3614 }
3615
3611 if (is_desktop_linux) { 3616 if (is_desktop_linux) {
3612 # Desktop linux, doesn't count ChromeOS. 3617 # Desktop linux, doesn't count ChromeOS.
3613 sources += [ 3618 sources += [
3614 "first_run/upgrade_util.cc", 3619 "first_run/upgrade_util.cc",
3615 "first_run/upgrade_util_linux.cc", 3620 "first_run/upgrade_util_linux.cc",
3616 "first_run/upgrade_util_linux.h", 3621 "first_run/upgrade_util_linux.h",
3617 "icon_loader_auralinux.cc", 3622 "icon_loader_auralinux.cc",
3618 "password_manager/native_backend_kwallet_x.cc", 3623 "password_manager/native_backend_kwallet_x.cc",
3619 "password_manager/native_backend_kwallet_x.h", 3624 "password_manager/native_backend_kwallet_x.h",
3620 "platform_util_linux.cc", 3625 "platform_util_linux.cc",
(...skipping 896 matching lines...) Expand 10 before | Expand all | Expand 10 after
4517 "media/pepper_cdm_test_constants.cc", 4522 "media/pepper_cdm_test_constants.cc",
4518 "media/pepper_cdm_test_constants.h", 4523 "media/pepper_cdm_test_constants.h",
4519 ] 4524 ]
4520 } 4525 }
4521 } 4526 }
4522 4527
4523 service_manifest("preferences_manifest") { 4528 service_manifest("preferences_manifest") {
4524 name = "preferences" 4529 name = "preferences"
4525 source = "prefs/preferences_manifest.json" 4530 source = "prefs/preferences_manifest.json"
4526 } 4531 }
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