OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
John Grabowski
2011/11/01 23:09:34
Comment on the origin of this file (e.g. likely bu
mmenke
2011/11/01 23:15:22
Random drive by nit: Update copyright year. One
Jing Zhao
2011/11/02 16:22:55
Done.
Jing Zhao
2011/11/02 16:22:55
It's newly written, because we use openssl while L
| |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'targets': [ | |
7 { | |
8 'target_name': 'ssl', | |
9 'type': 'none', | |
10 'direct_dependent_settings': { | |
11 'defines': [ | |
12 'USE_OPENSSL', | |
13 ], | |
14 'include_dirs': [ | |
15 '../../third_party/openssl/openssl/include', | |
16 '../../third_party/openssl/config/android', | |
17 ], | |
18 }, | |
19 'dependencies': [ | |
20 '../../third_party/openssl/openssl.gyp:openssl', | |
21 ], | |
22 }, | |
23 ], | |
24 } | |
OLD | NEW |