| 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 3478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3489 "password_manager/native_backend_kwallet_x.cc", | 3489 "password_manager/native_backend_kwallet_x.cc", |
| 3490 "password_manager/native_backend_kwallet_x.h", | 3490 "password_manager/native_backend_kwallet_x.h", |
| 3491 "platform_util_linux.cc", | 3491 "platform_util_linux.cc", |
| 3492 "shell_integration_linux.cc", | 3492 "shell_integration_linux.cc", |
| 3493 "shell_integration_linux.h", | 3493 "shell_integration_linux.h", |
| 3494 "speech/tts_linux.cc", | 3494 "speech/tts_linux.cc", |
| 3495 "themes/theme_service_aurax11.cc", | 3495 "themes/theme_service_aurax11.cc", |
| 3496 "themes/theme_service_aurax11.h", | 3496 "themes/theme_service_aurax11.h", |
| 3497 "web_applications/web_app_linux.cc", | 3497 "web_applications/web_app_linux.cc", |
| 3498 ] | 3498 ] |
| 3499 if (!use_ozone) { | 3499 |
| 3500 # libsecret hard depends on GLib. |
| 3501 if (use_glib) { |
| 3500 sources += [ | 3502 sources += [ |
| 3501 "password_manager/native_backend_libsecret.cc", | 3503 "password_manager/native_backend_libsecret.cc", |
| 3502 "password_manager/native_backend_libsecret.h", | 3504 "password_manager/native_backend_libsecret.h", |
| 3503 ] | 3505 ] |
| 3504 defines += [ "USE_LIBSECRET" ] | 3506 defines += [ "USE_LIBSECRET" ] |
| 3505 deps += [ "//third_party/libsecret" ] | 3507 deps += [ "//third_party/libsecret" ] |
| 3506 } | 3508 } |
| 3507 } | 3509 } |
| 3508 | 3510 |
| 3509 if (android_java_ui) { | 3511 if (android_java_ui) { |
| (...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4327 # linking all of the test support. | 4329 # linking all of the test support. |
| 4328 static_library("pepper_cdm_test_constants") { | 4330 static_library("pepper_cdm_test_constants") { |
| 4329 testonly = true | 4331 testonly = true |
| 4330 visibility = [ "//chrome/*" ] | 4332 visibility = [ "//chrome/*" ] |
| 4331 sources = [ | 4333 sources = [ |
| 4332 "media/pepper_cdm_test_constants.cc", | 4334 "media/pepper_cdm_test_constants.cc", |
| 4333 "media/pepper_cdm_test_constants.h", | 4335 "media/pepper_cdm_test_constants.h", |
| 4334 ] | 4336 ] |
| 4335 } | 4337 } |
| 4336 } | 4338 } |
| OLD | NEW |