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

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

Issue 2788093002: Add missing header files to GN files (3 of N) (Closed)
Patch Set: manual fixes Created 3 years, 8 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 | « no previous file | content/test/fuzzer/BUILD.gn » ('j') | 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/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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | content/test/fuzzer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698