| 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 { | 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 Loading... |
| 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 } |
| OLD | NEW |