summaryrefslogtreecommitdiffstats
path: root/chromium/build/android/rezip.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/build/android/rezip.gyp')
-rw-r--r--chromium/build/android/rezip.gyp23
1 files changed, 23 insertions, 0 deletions
diff --git a/chromium/build/android/rezip.gyp b/chromium/build/android/rezip.gyp
new file mode 100644
index 00000000000..b06ac52cb24
--- /dev/null
+++ b/chromium/build/android/rezip.gyp
@@ -0,0 +1,23 @@
+# Copyright 2014 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.
+
+# Build the rezip build tool.
+{
+ 'targets': [
+ {
+ 'target_name': 'rezip',
+ 'type': 'executable',
+ 'toolsets': [ 'host' ],
+ 'dependencies': [
+ '<(DEPTH)/third_party/zlib/zlib.gyp:minizip',
+ ],
+ 'include_dirs': [
+ '<(DEPTH)',
+ ],
+ 'sources': [
+ 'rezip/rezip.cc',
+ ],
+ }
+ ],
+}