Chromium Code Reviews| Index: openssl.gyp |
| =================================================================== |
| --- openssl.gyp (revision 244037) |
| +++ openssl.gyp (working copy) |
| @@ -21,6 +21,9 @@ |
| 'openssl/crypto/modes', |
| 'openssl/include', |
| ], |
| + 'openssl_public_include_dirs': [ |
| + 'openssl/include', |
| + ], |
| }, |
| 'sources': [ |
| '<@(openssl_common_sources)', |
| @@ -83,6 +86,7 @@ |
| 'variables': { |
| # Ensure the 64-bit opensslconf.h header is used. |
| 'openssl_include_dirs+': [ 'config/x64' ], |
| + 'openssl_public_include_dirs+': [ 'config/x64' ], |
|
Ryan Sleevi
2014/02/05 02:13:03
Is the public API affected by this (eg: including
wtc
2014/02/05 17:14:32
opensslconf.h is the only header under the config/
|
| }, |
| }], |
| ['component == "shared_library"', { |
| @@ -107,7 +111,7 @@ |
| ], |
| 'direct_dependent_settings': { |
| 'include_dirs': [ |
| - 'openssl/include', |
| + '<@(openssl_public_include_dirs)', |
| ], |
| }, |
| }, |