| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 'sources': [ | 54 'sources': [ |
| 55 'os_crypt/libsecret_util_posix.cc', | 55 'os_crypt/libsecret_util_posix.cc', |
| 56 'os_crypt/libsecret_util_posix.h', | 56 'os_crypt/libsecret_util_posix.h', |
| 57 ], | 57 ], |
| 58 'defines': [ | 58 'defines': [ |
| 59 'USE_LIBSECRET', | 59 'USE_LIBSECRET', |
| 60 ], | 60 ], |
| 61 'include_dirs' : [ | 61 'include_dirs' : [ |
| 62 '../third_party/libsecret/' | 62 '../third_party/libsecret/' |
| 63 ], | 63 ], |
| 64 'dependencies': [ |
| 65 '../build/linux/system.gyp:glib', |
| 66 ], |
| 64 }], | 67 }], |
| 65 ], | 68 ], |
| 66 'target_conditions': [ | 69 'target_conditions': [ |
| 67 ['OS=="ios"', { | 70 ['OS=="ios"', { |
| 68 'sources/': [ | 71 'sources/': [ |
| 69 ['include', '^os_crypt/keychain_password_mac\\.mm$'], | 72 ['include', '^os_crypt/keychain_password_mac\\.mm$'], |
| 70 ['include', '^os_crypt/os_crypt_mac\\.mm$'], | 73 ['include', '^os_crypt/os_crypt_mac\\.mm$'], |
| 71 ], | 74 ], |
| 72 }], | 75 }], |
| 73 ], | 76 ], |
| 74 }, | 77 }, |
| 75 ], | 78 ], |
| 76 } | 79 } |
| OLD | NEW |