| 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 1342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1353 "//components/offline_pages/background:background_offliner", | 1353 "//components/offline_pages/background:background_offliner", |
| 1354 "//components/offline_pages/downloads:offline_pages_ui_adapter", | 1354 "//components/offline_pages/downloads:offline_pages_ui_adapter", |
| 1355 "//components/offline_pages/request_header:request_header", | 1355 "//components/offline_pages/request_header:request_header", |
| 1356 "//components/omnibox/browser", | 1356 "//components/omnibox/browser", |
| 1357 "//components/os_crypt", | 1357 "//components/os_crypt", |
| 1358 "//components/packed_ct_ev_whitelist", | 1358 "//components/packed_ct_ev_whitelist", |
| 1359 "//components/password_manager/content/browser", | 1359 "//components/password_manager/content/browser", |
| 1360 "//components/password_manager/core/browser", | 1360 "//components/password_manager/core/browser", |
| 1361 "//components/password_manager/core/common", | 1361 "//components/password_manager/core/common", |
| 1362 "//components/password_manager/sync/browser", | 1362 "//components/password_manager/sync/browser", |
| 1363 "//components/payments:payment_request", |
| 1363 "//components/policy:generated", | 1364 "//components/policy:generated", |
| 1364 "//components/policy/core/browser", | 1365 "//components/policy/core/browser", |
| 1365 "//components/policy/proto", | 1366 "//components/policy/proto", |
| 1366 "//components/prefs:prefs", | 1367 "//components/prefs:prefs", |
| 1367 "//components/previews/core", | 1368 "//components/previews/core", |
| 1368 "//components/profile_metrics", | 1369 "//components/profile_metrics", |
| 1369 "//components/proxy_config", | 1370 "//components/proxy_config", |
| 1370 "//components/query_parser", | 1371 "//components/query_parser", |
| 1371 "//components/rappor", | 1372 "//components/rappor", |
| 1372 "//components/rappor:rappor_recorder", | 1373 "//components/rappor:rappor_recorder", |
| (...skipping 2137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3510 configs += [ "//build/config/linux:x11" ] | 3511 configs += [ "//build/config/linux:x11" ] |
| 3511 deps += [ "//ui/gfx/x" ] | 3512 deps += [ "//ui/gfx/x" ] |
| 3512 } | 3513 } |
| 3513 } | 3514 } |
| 3514 | 3515 |
| 3515 if (is_linux || is_win) { | 3516 if (is_linux || is_win) { |
| 3516 sources += [ | 3517 sources += [ |
| 3517 "renderer_context_menu/spelling_options_submenu_observer.cc", | 3518 "renderer_context_menu/spelling_options_submenu_observer.cc", |
| 3518 "renderer_context_menu/spelling_options_submenu_observer.h", | 3519 "renderer_context_menu/spelling_options_submenu_observer.h", |
| 3519 ] | 3520 ] |
| 3521 deps += [ "//chrome/browser/payments:payments" ] |
| 3520 } | 3522 } |
| 3521 | 3523 |
| 3522 if (is_desktop_linux) { | 3524 if (is_desktop_linux) { |
| 3523 # Desktop linux, doesn't count ChromeOS. | 3525 # Desktop linux, doesn't count ChromeOS. |
| 3524 sources += [ | 3526 sources += [ |
| 3525 "first_run/upgrade_util.cc", | 3527 "first_run/upgrade_util.cc", |
| 3526 "first_run/upgrade_util_linux.cc", | 3528 "first_run/upgrade_util_linux.cc", |
| 3527 "first_run/upgrade_util_linux.h", | 3529 "first_run/upgrade_util_linux.h", |
| 3528 "icon_loader_auralinux.cc", | 3530 "icon_loader_auralinux.cc", |
| 3529 "password_manager/native_backend_kwallet_x.cc", | 3531 "password_manager/native_backend_kwallet_x.cc", |
| (...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4402 # linking all of the test support. | 4404 # linking all of the test support. |
| 4403 static_library("pepper_cdm_test_constants") { | 4405 static_library("pepper_cdm_test_constants") { |
| 4404 testonly = true | 4406 testonly = true |
| 4405 visibility = [ "//chrome/*" ] | 4407 visibility = [ "//chrome/*" ] |
| 4406 sources = [ | 4408 sources = [ |
| 4407 "media/pepper_cdm_test_constants.cc", | 4409 "media/pepper_cdm_test_constants.cc", |
| 4408 "media/pepper_cdm_test_constants.h", | 4410 "media/pepper_cdm_test_constants.h", |
| 4409 ] | 4411 ] |
| 4410 } | 4412 } |
| 4411 } | 4413 } |
| OLD | NEW |