summaryrefslogtreecommitdiff
path: root/libjpeg.gyp
diff options
context:
space:
mode:
authorepoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-03-16 19:01:38 +0000
committerepoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-03-16 19:01:38 +0000
commit2ae4fc589c07084db82dc2c3f2763945e25240f7 (patch)
tree84b4f70799ff48ff70b74baa481623cb936d7b8c /libjpeg.gyp
parentac44a111439fad95c9c17f735d1dfd82e2270760 (diff)
downloadgyp-2ae4fc589c07084db82dc2c3f2763945e25240f7.tar.gz
Add libjpeg.gyp that wraps third_party/externals/libjpeg/libjpeg.gyp
Review URL: https://codereview.appspot.com/5848046 git-svn-id: http://skia.googlecode.com/svn/trunk/gyp@3419 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'libjpeg.gyp')
-rw-r--r--libjpeg.gyp24
1 files changed, 24 insertions, 0 deletions
diff --git a/libjpeg.gyp b/libjpeg.gyp
new file mode 100644
index 0000000..4826f48
--- /dev/null
+++ b/libjpeg.gyp
@@ -0,0 +1,24 @@
+# Copyright 2012 The Android Open Source Project
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# Depend on this wrapper to pick up libjpeg from third_party
+
+{
+ 'targets': [
+ {
+ 'target_name': 'libjpeg',
+ 'type': 'none',
+ 'dependencies': [
+ '../third_party/externals/libjpeg/libjpeg.gyp:libjpeg',
+ ],
+ },
+ ],
+}
+
+# Local Variables:
+# tab-width:2
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=2 shiftwidth=2: