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

Unified Diff: third_party/instrumented_libraries/instrumented_libraries.gyp

Issue 361473002: Instrumented libraries: improve handling of custom patches. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use -i to pass filename to patch Created 6 years, 6 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 | « third_party/instrumented_libraries/freetype.sh ('k') | third_party/instrumented_libraries/libasound2.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/instrumented_libraries/instrumented_libraries.gyp
diff --git a/third_party/instrumented_libraries/instrumented_libraries.gyp b/third_party/instrumented_libraries/instrumented_libraries.gyp
index 479d7db1308c4f00724cc9d4d1d5da3767bf315d..7ab04c17010495c972b6bc65e3f55b828e88a157 100644
--- a/third_party/instrumented_libraries/instrumented_libraries.gyp
+++ b/third_party/instrumented_libraries/instrumented_libraries.gyp
@@ -46,6 +46,7 @@
# $ character in a way that would work for every package.
'-Wl,-R,XORIGIN/.'
],
+ 'patch': '',
'run_before_build': '',
'conditions': [
@@ -176,7 +177,7 @@
{
'package_name': 'freetype',
'dependencies=': [],
- 'run_before_build': 'freetype.sh',
+ 'run_before_build': 'scripts/freetype.sh',
'includes': ['standard_instrumented_package_target.gypi'],
},
{
@@ -223,7 +224,7 @@
# From debian/rules.
'--with-add-fonts=/usr/X11R6/lib/X11/fonts,/usr/local/share/fonts',
],
- 'run_before_build': 'libfontconfig.sh',
+ 'patch': 'patches/libfontconfig.diff',
'includes': ['standard_instrumented_package_target.gypi'],
},
{
@@ -255,7 +256,7 @@
# TSan reports data races on debug variables.
'--disable-debug',
],
- 'run_before_build': 'libnspr4.sh',
+ 'run_before_build': 'scripts/libnspr4.sh',
'includes': ['standard_instrumented_package_target.gypi'],
},
{
@@ -371,7 +372,7 @@
{
'package_name': 'zlib1g',
'dependencies=': [],
- 'run_before_build': 'zlib1g.sh',
+ 'patch': 'patches/zlib1g.diff',
'includes': ['standard_instrumented_package_target.gypi'],
},
{
@@ -379,7 +380,7 @@
'dependencies=': [
'<(_sanitizer_type)-libnspr4',
],
- 'run_before_build': 'nss.sh',
+ 'patch': 'patches/nss.diff',
'build_method': 'custom_nss',
'includes': ['standard_instrumented_package_target.gypi'],
},
@@ -388,20 +389,21 @@
'dependencies=': [
'<(_sanitizer_type)-libdbus-1-3',
],
- 'run_before_build': 'pulseaudio.sh',
+ 'patch': 'patches/pulseaudio.diff',
+ 'run_before_build': 'scripts/pulseaudio.sh',
'jobs': 1,
'includes': ['standard_instrumented_package_target.gypi'],
},
{
'package_name': 'libasound2',
'dependencies=': [],
- 'run_before_build': 'libasound2.sh',
+ 'run_before_build': 'scripts/libasound2.sh',
'includes': ['standard_instrumented_package_target.gypi'],
},
{
'package_name': 'libcups2',
'dependencies=': [],
- 'run_before_build': 'libcups2.sh',
+ 'patch': 'patches/libcups2.diff',
'jobs': 1,
'extra_configure_flags': [
# All from debian/rules.
@@ -487,7 +489,8 @@
'--with-xinput=yes',
],
'dependencies=': [],
- 'run_before_build': 'libgtk2.0-0.sh',
+ 'patch': 'patches/libgtk2.0-0.diff',
+ 'run_before_build': 'scripts/libgtk2.0-0.sh',
'includes': ['standard_instrumented_package_target.gypi'],
},
{
@@ -500,7 +503,8 @@
'--disable-introspection',
],
'dependencies=': [],
- 'run_before_build': 'libgdk-pixbuf2.0-0.sh',
+ 'patch': 'patches/libgdk-pixbuf2.0-0.diff',
+ 'run_before_build': 'scripts/libgdk-pixbuf2.0-0.sh',
'includes': ['standard_instrumented_package_target.gypi'],
},
{
@@ -553,6 +557,7 @@
],
'dependencies=': [],
'build_method': 'custom_libappindicator1',
+ 'jobs': 1,
'includes': ['standard_instrumented_package_target.gypi'],
},
{
« no previous file with comments | « third_party/instrumented_libraries/freetype.sh ('k') | third_party/instrumented_libraries/libasound2.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698