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

Side by Side Diff: components/os_crypt.gypi

Issue 1847063004: Remove "#pragma comment(lib" in components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'os_crypt', 8 'target_name': 'os_crypt',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 14 matching lines...) Expand all
25 'os_crypt/os_crypt_switches.cc', 25 'os_crypt/os_crypt_switches.cc',
26 'os_crypt/os_crypt_switches.h', 26 'os_crypt/os_crypt_switches.h',
27 'os_crypt/os_crypt_win.cc', 27 'os_crypt/os_crypt_win.cc',
28 ], 28 ],
29 'conditions': [ 29 'conditions': [
30 ['OS=="mac"', { 30 ['OS=="mac"', {
31 'sources!': [ 31 'sources!': [
32 'os_crypt/os_crypt_posix.cc', 32 'os_crypt/os_crypt_posix.cc',
33 ], 33 ],
34 }], 34 }],
35 ['OS=="win"', {
36 'all_dependent_settings': {
37 'msvs_settings': {
38 'VCLinkerTool': {
39 'AdditionalDependencies': [
40 'crypt32.lib',
41 ],
42 },
43 },
44 },
45 'msvs_settings': {
46 'VCLinkerTool': {
47 'AdditionalDependencies': [
48 'crypt32.lib',
49 ],
50 },
51 },
52 }],
35 ], 53 ],
36 'target_conditions': [ 54 'target_conditions': [
37 ['OS=="ios"', { 55 ['OS=="ios"', {
38 'sources/': [ 56 'sources/': [
39 ['include', '^os_crypt/keychain_password_mac\\.mm$'], 57 ['include', '^os_crypt/keychain_password_mac\\.mm$'],
40 ['include', '^os_crypt/os_crypt_mac\\.mm$'], 58 ['include', '^os_crypt/os_crypt_mac\\.mm$'],
41 ], 59 ],
42 }], 60 }],
43 ], 61 ],
44 }, 62 },
45 ], 63 ],
46 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698