| 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 3445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3456 "renderer_context_menu/spelling_options_submenu_observer.h", | 3456 "renderer_context_menu/spelling_options_submenu_observer.h", |
| 3457 ] | 3457 ] |
| 3458 } | 3458 } |
| 3459 | 3459 |
| 3460 if (is_desktop_linux) { | 3460 if (is_desktop_linux) { |
| 3461 # Desktop linux, doesn't count ChromeOS. | 3461 # Desktop linux, doesn't count ChromeOS. |
| 3462 sources += [ | 3462 sources += [ |
| 3463 "first_run/upgrade_util.cc", | 3463 "first_run/upgrade_util.cc", |
| 3464 "first_run/upgrade_util_linux.cc", | 3464 "first_run/upgrade_util_linux.cc", |
| 3465 "first_run/upgrade_util_linux.h", | 3465 "first_run/upgrade_util_linux.h", |
| 3466 "fullscreen_aurax11.cc", | |
| 3467 "icon_loader_auralinux.cc", | 3466 "icon_loader_auralinux.cc", |
| 3468 "media/webrtc/window_icon_util_x11.cc", | |
| 3469 "password_manager/native_backend_kwallet_x.cc", | |
| 3470 "password_manager/native_backend_kwallet_x.h", | |
| 3471 "platform_util_linux.cc", | 3467 "platform_util_linux.cc", |
| 3472 "shell_integration_linux.cc", | 3468 "shell_integration_linux.cc", |
| 3473 "shell_integration_linux.h", | 3469 "shell_integration_linux.h", |
| 3474 "speech/tts_linux.cc", | 3470 "speech/tts_linux.cc", |
| 3475 "themes/theme_service_aurax11.cc", | 3471 "themes/theme_service_aurax11.cc", |
| 3476 "themes/theme_service_aurax11.h", | 3472 "themes/theme_service_aurax11.h", |
| 3477 "web_applications/web_app_linux.cc", | 3473 "web_applications/web_app_linux.cc", |
| 3478 ] | 3474 ] |
| 3479 if (!use_ozone) { | 3475 if (!use_ozone) { |
| 3480 sources += [ | 3476 sources += [ |
| 3477 "fullscreen_aurax11.cc", |
| 3478 "media/webrtc/window_icon_util_x11.cc", |
| 3479 "password_manager/native_backend_kwallet_x.cc", |
| 3480 "password_manager/native_backend_kwallet_x.h", |
| 3481 "password_manager/native_backend_libsecret.cc", | 3481 "password_manager/native_backend_libsecret.cc", |
| 3482 "password_manager/native_backend_libsecret.h", | 3482 "password_manager/native_backend_libsecret.h", |
| 3483 ] | 3483 ] |
| 3484 defines += [ "USE_LIBSECRET" ] | 3484 defines += [ "USE_LIBSECRET" ] |
| 3485 deps += [ "//third_party/libsecret" ] | 3485 deps += [ "//third_party/libsecret" ] |
| 3486 } else { |
| 3487 sources += [ |
| 3488 "media/webrtc/window_icon_util_ozone.cc", |
| 3489 "ui/ozone_stubs.cc", |
| 3490 "ui/ozone_stubs.h", |
| 3491 ] |
| 3486 } | 3492 } |
| 3487 } | 3493 } |
| 3488 | 3494 |
| 3489 if (android_java_ui) { | 3495 if (android_java_ui) { |
| 3490 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ] | 3496 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ] |
| 3491 } | 3497 } |
| 3492 | 3498 |
| 3493 if (enable_plugin_installation) { | 3499 if (enable_plugin_installation) { |
| 3494 sources += [ | 3500 sources += [ |
| 3495 "plugins/plugin_installer.cc", | 3501 "plugins/plugin_installer.cc", |
| (...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4286 # linking all of the test support. | 4292 # linking all of the test support. |
| 4287 static_library("pepper_cdm_test_constants") { | 4293 static_library("pepper_cdm_test_constants") { |
| 4288 testonly = true | 4294 testonly = true |
| 4289 visibility = [ "//chrome/*" ] | 4295 visibility = [ "//chrome/*" ] |
| 4290 sources = [ | 4296 sources = [ |
| 4291 "media/pepper_cdm_test_constants.cc", | 4297 "media/pepper_cdm_test_constants.cc", |
| 4292 "media/pepper_cdm_test_constants.h", | 4298 "media/pepper_cdm_test_constants.h", |
| 4293 ] | 4299 ] |
| 4294 } | 4300 } |
| 4295 } | 4301 } |
| OLD | NEW |