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

Unified Diff: src/d8.gyp

Issue 7740020: Refactor .gyp files: (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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
Index: src/d8.gyp
diff --git a/src/d8.gyp b/src/d8.gyp
index 2d9af7807a05a77bf17200b4deb02efa8e895a63..cf8601872443a9a0edb15c70564438defef2e7ad 100644
--- a/src/d8.gyp
+++ b/src/d8.gyp
@@ -26,6 +26,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
{
+ 'includes': ['../build/common.gypi'],
'variables': {
'console%': '',
},
@@ -36,6 +37,7 @@
'dependencies': [
'../tools/gyp/v8.gyp:v8',
],
+ # Generated source files need this explicitly:
'include_dirs+': [
'../src',
],
@@ -71,6 +73,11 @@
}],
],
}],
+ ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', {
+ 'ldflags': [
+ '-pthread',
+ ]},
+ ],
Yang 2011/08/25 11:24:03 Ditto.
Jakob Kummerow 2011/08/25 14:46:08 Done.
],
},
{

Powered by Google App Engine
This is Rietveld 408576698