| 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 3532 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 3543       } | 3543       } | 
| 3544     } | 3544     } | 
| 3545     if (use_x11) { | 3545     if (use_x11) { | 
| 3546       configs += [ "//build/config/linux:x11" ] | 3546       configs += [ "//build/config/linux:x11" ] | 
| 3547       deps += [ "//ui/gfx/x" ] | 3547       deps += [ "//ui/gfx/x" ] | 
| 3548     } | 3548     } | 
| 3549   } | 3549   } | 
| 3550 | 3550 | 
| 3551   if (is_linux || is_win) { | 3551   if (is_linux || is_win) { | 
| 3552     sources += [ | 3552     sources += [ | 
|  | 3553       "payments/payment_request_impl.cc", | 
|  | 3554       "payments/payment_request_impl.h", | 
| 3553       "renderer_context_menu/spelling_options_submenu_observer.cc", | 3555       "renderer_context_menu/spelling_options_submenu_observer.cc", | 
| 3554       "renderer_context_menu/spelling_options_submenu_observer.h", | 3556       "renderer_context_menu/spelling_options_submenu_observer.h", | 
| 3555     ] | 3557     ] | 
| 3556     deps += [ "//chrome/browser/payments:payments" ] |  | 
| 3557   } | 3558   } | 
| 3558 | 3559 | 
| 3559   if (is_desktop_linux) { | 3560   if (is_desktop_linux) { | 
| 3560     # Desktop linux, doesn't count ChromeOS. | 3561     # Desktop linux, doesn't count ChromeOS. | 
| 3561     sources += [ | 3562     sources += [ | 
| 3562       "first_run/upgrade_util.cc", | 3563       "first_run/upgrade_util.cc", | 
| 3563       "first_run/upgrade_util_linux.cc", | 3564       "first_run/upgrade_util_linux.cc", | 
| 3564       "first_run/upgrade_util_linux.h", | 3565       "first_run/upgrade_util_linux.h", | 
| 3565       "icon_loader_auralinux.cc", | 3566       "icon_loader_auralinux.cc", | 
| 3566       "password_manager/native_backend_kwallet_x.cc", | 3567       "password_manager/native_backend_kwallet_x.cc", | 
| (...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 4450   # linking all of the test support. | 4451   # linking all of the test support. | 
| 4451   static_library("pepper_cdm_test_constants") { | 4452   static_library("pepper_cdm_test_constants") { | 
| 4452     testonly = true | 4453     testonly = true | 
| 4453     visibility = [ "//chrome/*" ] | 4454     visibility = [ "//chrome/*" ] | 
| 4454     sources = [ | 4455     sources = [ | 
| 4455       "media/pepper_cdm_test_constants.cc", | 4456       "media/pepper_cdm_test_constants.cc", | 
| 4456       "media/pepper_cdm_test_constants.h", | 4457       "media/pepper_cdm_test_constants.h", | 
| 4457     ] | 4458     ] | 
| 4458   } | 4459   } | 
| 4459 } | 4460 } | 
| OLD | NEW | 
|---|