Home | History | Annotate | Download | only in android
      1 # Copyright 2014 The Chromium Authors. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 # Build the rezip build tool.
      6 {
      7   'targets': [
      8     {
      9       'target_name': 'rezip',
     10       'type': 'executable',
     11       'toolsets': [ 'host' ],
     12       'dependencies': [
     13         '<(DEPTH)/third_party/zlib/zlib.gyp:minizip',
     14       ],
     15       'include_dirs': [
     16         '<(DEPTH)',
     17       ],
     18       'sources': [
     19         'rezip/rezip.cc',
     20       ],
     21     }
     22   ],
     23 }
     24