| Index: components/os_crypt/BUILD.gn
|
| diff --git a/components/os_crypt/BUILD.gn b/components/os_crypt/BUILD.gn
|
| index 1ef7f1fad50c5d1078d86aa5f8de5bfdaa57bf73..ffb9d8b6bd0a88dc2fb1ccb7ec88d003f95616de 100644
|
| --- a/components/os_crypt/BUILD.gn
|
| +++ b/components/os_crypt/BUILD.gn
|
| @@ -44,7 +44,7 @@ static_library("os_crypt") {
|
| libs = [ "crypt32.lib" ]
|
| }
|
|
|
| - if (is_desktop_linux && (use_glib || use_dbus)) {
|
| + if (is_desktop_linux) {
|
| sources -= [ "os_crypt_posix.cc" ]
|
| sources += [
|
| "key_storage_linux.cc",
|
| @@ -86,7 +86,7 @@ static_library("test_support") {
|
| "//base",
|
| "//testing/gtest",
|
| ]
|
| - if (is_desktop_linux && (use_glib || use_dbus)) {
|
| + if (is_desktop_linux) {
|
| sources += [
|
| "os_crypt_mocker_linux.cc",
|
| "os_crypt_mocker_linux.h",
|
| @@ -112,7 +112,7 @@ source_set("unit_tests") {
|
| "//testing/gtest",
|
| ]
|
|
|
| - if (is_desktop_linux && (use_glib || use_dbus)) {
|
| + if (is_desktop_linux) {
|
| sources += [ "os_crypt_linux_unittest.cc" ]
|
| defines = []
|
|
|
|
|