aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-03-16 19:01:38 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-03-16 19:01:38 +0000
commitce47fec10ccda45550625221c64322d89622c707 (patch)
tree752fcf388d11a8a3365816cbcaa3e097a6c66091 /gyp
parent573e8ba41c0454e696394a9434bb48a066f10570 (diff)
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@3419 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gyp')
-rw-r--r--gyp/libjpeg.gyp24
1 files changed, 24 insertions, 0 deletions
diff --git a/gyp/libjpeg.gyp b/gyp/libjpeg.gyp
new file mode 100644
index 0000000000..4826f48dab
--- /dev/null
+++ b/gyp/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: