| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 'crypto.gypi', | 10 'crypto.gypi', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 ], | 24 ], |
| 25 'sources!': [ | 25 'sources!': [ |
| 26 'third_party/nss/chromium-nss.h', | 26 'third_party/nss/chromium-nss.h', |
| 27 'third_party/nss/chromium-prtypes.h', | 27 'third_party/nss/chromium-prtypes.h', |
| 28 'third_party/nss/chromium-sha256.h', | 28 'third_party/nss/chromium-sha256.h', |
| 29 'third_party/nss/sha512.cc', | 29 'third_party/nss/sha512.cc', |
| 30 ], | 30 ], |
| 31 'conditions': [ | 31 'conditions': [ |
| 32 [ 'os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { | 32 [ 'os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { |
| 33 'dependencies': [ | 33 'dependencies': [ |
| 34 '../build/linux/system.gyp:ssl', | 34 '../build/linux/system.gyp:nss', |
| 35 ], | 35 ], |
| 36 'export_dependent_settings': [ | 36 'export_dependent_settings': [ |
| 37 '../build/linux/system.gyp:ssl', | 37 '../build/linux/system.gyp:nss', |
| 38 ], | 38 ], |
| 39 'conditions': [ | 39 'conditions': [ |
| 40 [ 'chromeos==1', { | 40 [ 'chromeos==1', { |
| 41 'sources/': [ ['include', '_chromeos\\.cc$'] ] | 41 'sources/': [ ['include', '_chromeos\\.cc$'] ] |
| 42 }, | 42 }, |
| 43 ], | 43 ], |
| 44 ], | 44 ], |
| 45 }, { # os_posix != 1 or OS == "mac" or OS == "ios" or OS == "android" | 45 }, { # os_posix != 1 or OS == "mac" or OS == "ios" or OS == "android" |
| 46 'sources!': [ | 46 'sources!': [ |
| 47 'hmac_win.cc', | 47 'hmac_win.cc', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 '../base/base.gyp:base', | 133 '../base/base.gyp:base', |
| 134 '../base/base.gyp:run_all_unittests', | 134 '../base/base.gyp:run_all_unittests', |
| 135 '../base/base.gyp:test_support_base', | 135 '../base/base.gyp:test_support_base', |
| 136 '../testing/gmock.gyp:gmock', | 136 '../testing/gmock.gyp:gmock', |
| 137 '../testing/gtest.gyp:gtest', | 137 '../testing/gtest.gyp:gtest', |
| 138 '../third_party/boringssl/boringssl.gyp:boringssl', | 138 '../third_party/boringssl/boringssl.gyp:boringssl', |
| 139 ], | 139 ], |
| 140 'conditions': [ | 140 'conditions': [ |
| 141 [ 'use_nss_certs == 1', { | 141 [ 'use_nss_certs == 1', { |
| 142 'dependencies': [ | 142 'dependencies': [ |
| 143 '../build/linux/system.gyp:ssl', | 143 '../build/linux/system.gyp:nss', |
| 144 ], | 144 ], |
| 145 }], | 145 }], |
| 146 [ 'use_nss_certs == 0', { | 146 [ 'use_nss_certs == 0', { |
| 147 # Some files are built when NSS is used for the platform certificate l
ibrary. | 147 # Some files are built when NSS is used for the platform certificate l
ibrary. |
| 148 'sources!': [ | 148 'sources!': [ |
| 149 'nss_key_util_unittest.cc', | 149 'nss_key_util_unittest.cc', |
| 150 'nss_util_unittest.cc', | 150 'nss_util_unittest.cc', |
| 151 ], | 151 ], |
| 152 }], | 152 }], |
| 153 [ 'OS == "win"', { | 153 [ 'OS == "win"', { |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 '../build/isolate.gypi', | 237 '../build/isolate.gypi', |
| 238 ], | 238 ], |
| 239 'sources': [ | 239 'sources': [ |
| 240 'crypto_unittests.isolate', | 240 'crypto_unittests.isolate', |
| 241 ], | 241 ], |
| 242 }, | 242 }, |
| 243 ], | 243 ], |
| 244 }], | 244 }], |
| 245 ], | 245 ], |
| 246 } | 246 } |
| OLD | NEW |