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

Unified Diff: base/base.gypi

Issue 11685002: Linux: add option to use system nspr. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 8 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
Index: base/base.gypi
diff --git a/base/base.gypi b/base/base.gypi
index 99e16abc8e80d406711e88ca29177b9c9e0c5b91..680f85e296848be23296bf9ccfcaa83ce7bdc5ac 100644
--- a/base/base.gypi
+++ b/base/base.gypi
@@ -727,6 +727,11 @@
['OS == "win" and >(nacl_untrusted_build)==1', {
'sources/': [ ['exclude', '\\.h$'] ],
}],
+ ['<(use_system_nspr)==1', {
Ryan Sleevi 2013/01/03 18:51:35 You're in a conditions block, do not use this vari
Paweł Hajdan Jr. 2013/01/04 18:01:31 Nope. If I don't do that build/gyp_chromium bails
Ryan Sleevi 2013/01/07 00:04:10 Ah, it's because it's within a target_conditions b
+ 'sources/': [
+ ['exclude', '^third_party/nspr/'],
wtc 2013/01/04 16:55:28 This will exclude prtime.cc and use the PR_ParseTi
Paweł Hajdan Jr. 2013/01/04 18:01:31 Yep. We're using system headers though. That's the
wtc 2013/01/05 16:23:35 You're right. After I wrote my previous comment, I
+ ],
+ }],
],
}],
],

Powered by Google App Engine
This is Rietveld 408576698