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

Unified Diff: build/linux/system.gyp

Issue 479005: Make sure the 'use_system_*' variables are actually visible in the relevant gyp files. (Closed)
Patch Set: Created 11 years 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 | « build/install-build-deps.sh ('k') | third_party/bzip2/bzip2.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/system.gyp
diff --git a/build/linux/system.gyp b/build/linux/system.gyp
index a707343c58b0ad8058cdd79864bdafc4cb38cbe1..c51d0a7ab63ae214da0f2ab7109cabd1668fcce1 100644
--- a/build/linux/system.gyp
+++ b/build/linux/system.gyp
@@ -13,11 +13,19 @@
'pkg-config': 'pkg-config'
},
}],
+ [ 'OS=="linux"', {
+ 'variables': {
+ # We use our own copy of libssl, although we still need to link against
+ # the rest of NSS.
+ 'use_system_ssl%': 0,
+ },
+ }, { # OS!="linux"
+ 'variables': {
+ 'use_system_ssl%': 1,
+ },
+ }],
],
- 'variables': {
- 'use_system_ssl%': 1,
- },
'targets': [
{
« no previous file with comments | « build/install-build-deps.sh ('k') | third_party/bzip2/bzip2.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698