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

Unified Diff: build/linux/unbundle/libxslt.gyp

Issue 14203006: Extract use_system_foo logic out of gyp files, patch 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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: build/linux/unbundle/libxslt.gyp
diff --git a/build/linux/unbundle/harfbuzz.gyp b/build/linux/unbundle/libxslt.gyp
similarity index 59%
copy from build/linux/unbundle/harfbuzz.gyp
copy to build/linux/unbundle/libxslt.gyp
index 456dd384df2d5c57d9857cfb775d46ef87add2bc..f7f6bb9ab02584f13d1d76dd26b94737c5267f1a 100644
--- a/build/linux/unbundle/harfbuzz.gyp
+++ b/build/linux/unbundle/libxslt.gyp
@@ -5,22 +5,19 @@
{
'targets': [
{
- 'target_name': 'harfbuzz-ng',
+ 'target_name': 'libxslt',
'type': 'none',
- 'cflags': [
- '<!@(pkg-config --cflags harfbuzz)',
- ],
'direct_dependent_settings': {
'cflags': [
- '<!@(pkg-config --cflags harfbuzz)',
+ '<!@(pkg-config --cflags libxslt)',
],
},
'link_settings': {
'ldflags': [
- '<!@(pkg-config --libs-only-L --libs-only-other harfbuzz)',
+ '<!@(pkg-config --libs-only-L --libs-only-other libxslt)',
],
'libraries': [
- '<!@(pkg-config --libs-only-l harfbuzz)',
+ '<!@(pkg-config --libs-only-l libxslt)',
],
},
},

Powered by Google App Engine
This is Rietveld 408576698