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

Unified Diff: build/all.gyp

Issue 7366009: Excludes cctest from gyp build if using shared library. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/all.gyp
diff --git a/build/all.gyp b/build/all.gyp
index 544e2c299a3e62e78cc55388a31dfa4935749fba..b725059cf6f72a39deebe4577c2ef30f9789bd02 100644
--- a/build/all.gyp
+++ b/build/all.gyp
@@ -9,9 +9,15 @@
'type': 'none',
'dependencies': [
'../samples/samples.gyp:*',
- '../test/cctest/cctest.gyp:*',
'../src/d8.gyp:*',
- ]
+ ],
+ 'conditions': [
+ [ 'component!="shared_library"', {
+ 'dependencies': [
+ '../test/cctest/cctest.gyp:*',
+ ],
+ }]
+ ],
}
]
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698