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

Side by Side Diff: components/os_crypt/BUILD.gn

Issue 1934193002: Add system.gyp:glib as dependency to os_crypt.gypi (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update the gn file Created 4 years, 7 months 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 | « components/os_crypt.gypi ('k') | 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 source_set("os_crypt") { 5 source_set("os_crypt") {
6 sources = [ 6 sources = [
7 "ie7_password_win.cc", 7 "ie7_password_win.cc",
8 "ie7_password_win.h", 8 "ie7_password_win.h",
9 "keychain_password_mac.h", 9 "keychain_password_mac.h",
10 "keychain_password_mac.mm", 10 "keychain_password_mac.mm",
(...skipping 28 matching lines...) Expand all
39 39
40 if (is_win) { 40 if (is_win) {
41 libs = [ "crypt32.lib" ] 41 libs = [ "crypt32.lib" ]
42 } 42 }
43 43
44 if (is_desktop_linux) { 44 if (is_desktop_linux) {
45 sources += [ 45 sources += [
46 "libsecret_util_posix.cc", 46 "libsecret_util_posix.cc",
47 "libsecret_util_posix.h", 47 "libsecret_util_posix.h",
48 ] 48 ]
49 configs += [ "//build/config/linux:glib" ]
49 deps += [ "//third_party/libsecret" ] 50 deps += [ "//third_party/libsecret" ]
50 defines = [ "USE_LIBSECRET" ] 51 defines = [ "USE_LIBSECRET" ]
51 } 52 }
52 } 53 }
53 54
54 source_set("unit_tests") { 55 source_set("unit_tests") {
55 testonly = true 56 testonly = true
56 sources = [ 57 sources = [
57 "ie7_password_win_unittest.cc", 58 "ie7_password_win_unittest.cc",
58 "keychain_password_mac_unittest.mm", 59 "keychain_password_mac_unittest.mm",
59 "os_crypt_unittest.cc", 60 "os_crypt_unittest.cc",
60 ] 61 ]
61 deps = [ 62 deps = [
62 ":os_crypt", 63 ":os_crypt",
63 "//base", 64 "//base",
64 "//crypto", 65 "//crypto",
65 "//testing/gtest", 66 "//testing/gtest",
66 ] 67 ]
67 } 68 }
OLDNEW
« no previous file with comments | « components/os_crypt.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698