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 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
6 # for details. All rights reserved. Use of this source code is governed by a | 6 # for details. All rights reserved. Use of this source code is governed by a |
7 # BSD-style license that can be found in the LICENSE file. | 7 # BSD-style license that can be found in the LICENSE file. |
8 | 8 |
9 # This file is a modified copy of Chromium's src/net/third_party/nss/ssl.gyp. | 9 # This file is a modified copy of Chromium's src/net/third_party/nss/ssl.gyp. |
10 # Revision 199075 (this should agree with "nss_rev" in DEPS). | 10 # Revision 199075 (this should agree with "nss_rev" in DEPS). |
(...skipping 26 matching lines...) Expand all Loading... |
37 'variables': { | 37 'variables': { |
38 'ssl_directory': '../../../third_party/net_nss', | 38 'ssl_directory': '../../../third_party/net_nss', |
39 'os_posix': 0, | 39 'os_posix': 0, |
40 }, | 40 }, |
41 # Added by Dart. We do not indent, so diffs with the original are clearer. | 41 # Added by Dart. We do not indent, so diffs with the original are clearer. |
42 'conditions': [[ 'dart_io_support==1', { | 42 'conditions': [[ 'dart_io_support==1', { |
43 'targets': [ | 43 'targets': [ |
44 { | 44 { |
45 'target_name': 'libssl_dart', # Added by Dart (the _dart postfix) | 45 'target_name': 'libssl_dart', # Added by Dart (the _dart postfix) |
46 'type': 'static_library', | 46 'type': 'static_library', |
| 47 'toolsets':['host','target'], |
47 # Changed by Dart: '<(ssl_directory)/' added to all paths. | 48 # Changed by Dart: '<(ssl_directory)/' added to all paths. |
48 'sources': [ | 49 'sources': [ |
49 '<(ssl_directory)/ssl/authcert.c', | 50 '<(ssl_directory)/ssl/authcert.c', |
50 '<(ssl_directory)/ssl/cmpcert.c', | 51 '<(ssl_directory)/ssl/cmpcert.c', |
51 '<(ssl_directory)/ssl/derive.c', | 52 '<(ssl_directory)/ssl/derive.c', |
52 '<(ssl_directory)/ssl/dtlscon.c', | 53 '<(ssl_directory)/ssl/dtlscon.c', |
53 '<(ssl_directory)/ssl/os2_err.c', | 54 '<(ssl_directory)/ssl/os2_err.c', |
54 '<(ssl_directory)/ssl/os2_err.h', | 55 '<(ssl_directory)/ssl/os2_err.h', |
55 '<(ssl_directory)/ssl/preenc.h', | 56 '<(ssl_directory)/ssl/preenc.h', |
56 '<(ssl_directory)/ssl/prelib.c', | 57 '<(ssl_directory)/ssl/prelib.c', |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 'inherit_from': ['Dart_Base'], | 199 'inherit_from': ['Dart_Base'], |
199 'defines': [ | 200 'defines': [ |
200 'DEBUG', | 201 'DEBUG', |
201 ], | 202 ], |
202 }, | 203 }, |
203 }, | 204 }, |
204 }, | 205 }, |
205 ], | 206 ], |
206 }]], | 207 }]], |
207 } | 208 } |
OLD | NEW |