| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "//crypto:platform", | 51 "//crypto:platform", |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 if (is_mac || is_ios) { | 54 if (is_mac || is_ios) { |
| 55 sources -= [ "os_crypt_posix.cc" ] | 55 sources -= [ "os_crypt_posix.cc" ] |
| 56 } | 56 } |
| 57 | 57 |
| 58 if (is_ios) { | 58 if (is_ios) { |
| 59 set_sources_assignment_filter([]) | 59 set_sources_assignment_filter([]) |
| 60 sources += [ | 60 sources += [ |
| 61 "keychain_password_mac.h", |
| 61 "keychain_password_mac.mm", | 62 "keychain_password_mac.mm", |
| 62 "os_crypt_mac.mm", | 63 "os_crypt_mac.mm", |
| 63 ] | 64 ] |
| 64 set_sources_assignment_filter(sources_assignment_filter) | 65 set_sources_assignment_filter(sources_assignment_filter) |
| 65 } | 66 } |
| 66 | 67 |
| 67 if (is_win) { | 68 if (is_win) { |
| 68 libs = [ "crypt32.lib" ] | 69 libs = [ "crypt32.lib" ] |
| 69 } | 70 } |
| 70 | 71 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 if (use_dbus) { | 177 if (use_dbus) { |
| 177 sources += [ | 178 sources += [ |
| 178 "key_storage_kwallet_unittest.cc", | 179 "key_storage_kwallet_unittest.cc", |
| 179 "kwallet_dbus_unittest.cc", | 180 "kwallet_dbus_unittest.cc", |
| 180 ] | 181 ] |
| 181 deps += [ "//dbus:test_support" ] | 182 deps += [ "//dbus:test_support" ] |
| 182 defines += [ "USE_KWALLET" ] | 183 defines += [ "USE_KWALLET" ] |
| 183 } | 184 } |
| 184 } | 185 } |
| 185 } | 186 } |
| OLD | NEW |