| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/config/linux/pkg_config.gni") | 7 import("//build/config/linux/pkg_config.gni") |
| 8 import("//components/os_crypt/features.gni") | 8 import("//components/os_crypt/features.gni") |
| 9 | 9 |
| 10 if (use_gnome_keyring) { | 10 if (use_gnome_keyring) { |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "//crypto", | 150 "//crypto", |
| 151 "//testing/gmock", | 151 "//testing/gmock", |
| 152 "//testing/gtest", | 152 "//testing/gtest", |
| 153 ] | 153 ] |
| 154 | 154 |
| 155 if (is_desktop_linux) { | 155 if (is_desktop_linux) { |
| 156 sources += [ "os_crypt_linux_unittest.cc" ] | 156 sources += [ "os_crypt_linux_unittest.cc" ] |
| 157 defines = [] | 157 defines = [] |
| 158 | 158 |
| 159 if (use_glib) { | 159 if (use_glib) { |
| 160 sources += [ "os_crypt_util_linux_unittest.cc" ] | 160 sources += [ "key_storage_libsecret_unittest.cc" ] |
| 161 deps += [ "//third_party/libsecret" ] | 161 deps += [ "//third_party/libsecret" ] |
| 162 defines += [ "USE_LIBSECRET" ] | 162 defines += [ "USE_LIBSECRET" ] |
| 163 } | 163 } |
| 164 if (use_dbus) { | 164 if (use_dbus) { |
| 165 sources += [ | 165 sources += [ |
| 166 "key_storage_kwallet_unittest.cc", | 166 "key_storage_kwallet_unittest.cc", |
| 167 "kwallet_dbus_unittest.cc", | 167 "kwallet_dbus_unittest.cc", |
| 168 ] | 168 ] |
| 169 deps += [ "//dbus:test_support" ] | 169 deps += [ "//dbus:test_support" ] |
| 170 defines += [ "USE_KWALLET" ] | 170 defines += [ "USE_KWALLET" ] |
| 171 } | 171 } |
| 172 } | 172 } |
| 173 } | 173 } |
| OLD | NEW |