Index: build/linux/unbundle/harfbuzz.gyp |
diff --git a/build/linux/unbundle/harfbuzz.gyp b/build/linux/unbundle/harfbuzz.gyp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..456dd384df2d5c57d9857cfb775d46ef87add2bc |
--- /dev/null |
+++ b/build/linux/unbundle/harfbuzz.gyp |
@@ -0,0 +1,28 @@ |
+# Copyright 2013 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+{ |
+ 'targets': [ |
+ { |
+ 'target_name': 'harfbuzz-ng', |
+ 'type': 'none', |
+ 'cflags': [ |
+ '<!@(pkg-config --cflags harfbuzz)', |
+ ], |
+ 'direct_dependent_settings': { |
+ 'cflags': [ |
+ '<!@(pkg-config --cflags harfbuzz)', |
+ ], |
+ }, |
+ 'link_settings': { |
+ 'ldflags': [ |
+ '<!@(pkg-config --libs-only-L --libs-only-other harfbuzz)', |
+ ], |
+ 'libraries': [ |
+ '<!@(pkg-config --libs-only-l harfbuzz)', |
+ ], |
+ }, |
+ }, |
+ ], |
+} |