Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2642)

Unified Diff: build/linux/unbundle/openssl.gyp

Issue 23126002: Add an unbundled openssl.gyp file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/linux/unbundle/replace_gyp_files.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/unbundle/openssl.gyp
diff --git a/build/linux/unbundle/libxslt.gyp b/build/linux/unbundle/openssl.gyp
similarity index 65%
copy from build/linux/unbundle/libxslt.gyp
copy to build/linux/unbundle/openssl.gyp
index f7f6bb9ab02584f13d1d76dd26b94737c5267f1a..d832ba7be4d54c2307374c2a452e4210271d1618 100644
--- a/build/linux/unbundle/libxslt.gyp
+++ b/build/linux/unbundle/openssl.gyp
@@ -5,21 +5,21 @@
{
'targets': [
{
- 'target_name': 'libxslt',
+ 'target_name': 'openssl',
'type': 'none',
'direct_dependent_settings': {
'cflags': [
- '<!@(pkg-config --cflags libxslt)',
+ '<!@(pkg-config --cflags openssl)',
],
},
'link_settings': {
'ldflags': [
- '<!@(pkg-config --libs-only-L --libs-only-other libxslt)',
+ '<!@(pkg-config --libs-only-L --libs-only-other openssl)',
],
'libraries': [
- '<!@(pkg-config --libs-only-l libxslt)',
+ '<!@(pkg-config --libs-only-l openssl)',
],
},
- },
+ }
],
}
« no previous file with comments | « no previous file | build/linux/unbundle/replace_gyp_files.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698