OLD | NEW |
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 3515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3526 } | 3526 } |
3527 } | 3527 } |
3528 if (use_x11) { | 3528 if (use_x11) { |
3529 configs += [ "//build/config/linux:x11" ] | 3529 configs += [ "//build/config/linux:x11" ] |
3530 deps += [ "//ui/gfx/x" ] | 3530 deps += [ "//ui/gfx/x" ] |
3531 } | 3531 } |
3532 } | 3532 } |
3533 | 3533 |
3534 if (is_linux || is_win) { | 3534 if (is_linux || is_win) { |
3535 sources += [ | 3535 sources += [ |
| 3536 "payments/payment_request_impl.cc", |
| 3537 "payments/payment_request_impl.h", |
3536 "renderer_context_menu/spelling_options_submenu_observer.cc", | 3538 "renderer_context_menu/spelling_options_submenu_observer.cc", |
3537 "renderer_context_menu/spelling_options_submenu_observer.h", | 3539 "renderer_context_menu/spelling_options_submenu_observer.h", |
3538 ] | 3540 ] |
3539 deps += [ "//chrome/browser/payments:payments" ] | |
3540 } | 3541 } |
3541 | 3542 |
3542 if (is_desktop_linux) { | 3543 if (is_desktop_linux) { |
3543 # Desktop linux, doesn't count ChromeOS. | 3544 # Desktop linux, doesn't count ChromeOS. |
3544 sources += [ | 3545 sources += [ |
3545 "first_run/upgrade_util.cc", | 3546 "first_run/upgrade_util.cc", |
3546 "first_run/upgrade_util_linux.cc", | 3547 "first_run/upgrade_util_linux.cc", |
3547 "first_run/upgrade_util_linux.h", | 3548 "first_run/upgrade_util_linux.h", |
3548 "icon_loader_auralinux.cc", | 3549 "icon_loader_auralinux.cc", |
3549 "password_manager/native_backend_kwallet_x.cc", | 3550 "password_manager/native_backend_kwallet_x.cc", |
(...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4424 # linking all of the test support. | 4425 # linking all of the test support. |
4425 static_library("pepper_cdm_test_constants") { | 4426 static_library("pepper_cdm_test_constants") { |
4426 testonly = true | 4427 testonly = true |
4427 visibility = [ "//chrome/*" ] | 4428 visibility = [ "//chrome/*" ] |
4428 sources = [ | 4429 sources = [ |
4429 "media/pepper_cdm_test_constants.cc", | 4430 "media/pepper_cdm_test_constants.cc", |
4430 "media/pepper_cdm_test_constants.h", | 4431 "media/pepper_cdm_test_constants.h", |
4431 ] | 4432 ] |
4432 } | 4433 } |
4433 } | 4434 } |
OLD | NEW |