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

Unified Diff: courgette/courgette.gyp

Issue 203076: Fix the Linux shared build. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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: courgette/courgette.gyp
===================================================================
--- courgette/courgette.gyp (revision 26276)
+++ courgette/courgette.gyp (working copy)
@@ -94,6 +94,17 @@
'../base/base.gyp:base',
'../testing/gtest.gyp:gtest',
],
+ 'conditions': [
+ [ 'OS == "linux" or OS == "freebsd"', {
+ 'dependencies': [
+ # Workaround for gyp bug 69.
+ # Needed to handle the #include chain:
+ # base/test_suite.h
+ # gtk/gtk.h
+ '../build/linux/system.gyp:gtk',
+ ],
+ }],
+ ],
},
{
'target_name': 'courgette_fuzz',
@@ -107,6 +118,17 @@
'../base/base.gyp:base',
'../testing/gtest.gyp:gtest',
],
+ 'conditions': [
+ [ 'OS == "linux" or OS == "freebsd"', {
+ 'dependencies': [
+ # Workaround for gyp bug 69.
+ # Needed to handle the #include chain:
+ # base/test_suite.h
+ # gtk/gtk.h
+ '../build/linux/system.gyp:gtk',
+ ],
+ }],
+ ],
},
],
}
« no previous file with comments | « chrome/chrome.gyp ('k') | printing/printing.gyp » ('j') | third_party/ffmpeg/ffmpeg.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698