Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(428)

Side by Side Diff: chrome/browser/BUILD.gn

Issue 2452063002: Condition the libsecret use on chrome desktop builds to 'use_glib' (Closed)
Patch Set: Condition the libsecret use on chrome desktop builds to 'use_glib' Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698