Home | History | Annotate | Download | only in sdch
      1 # Copyright (c) 2012 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 {
      6   'variables': {
      7     'chromium_code': 1,
      8   },
      9   'targets': [
     10     {
     11       'target_name': 'sdch',
     12       'type': 'static_library',
     13       'dependencies': [
     14         '../base/base.gyp:base',
     15         '../third_party/zlib/zlib.gyp:zlib',
     16       ],
     17       'sources': [
     18         'logging_forward.h',
     19         'open-vcdiff/src/addrcache.cc',
     20         'open-vcdiff/src/blockhash.cc',
     21         'open-vcdiff/src/blockhash.h',
     22         'open-vcdiff/src/checksum.h',
     23         'open-vcdiff/src/codetable.cc',
     24         'open-vcdiff/src/codetable.h',
     25         'open-vcdiff/src/compile_assert.h',
     26         'open-vcdiff/src/decodetable.cc',
     27         'open-vcdiff/src/decodetable.h',
     28         'open-vcdiff/src/encodetable.cc',
     29         'open-vcdiff/src/encodetable.h',
     30         'open-vcdiff/src/google/output_string.h',
     31         'open-vcdiff/src/google/vcdecoder.h',
     32         'open-vcdiff/src/headerparser.cc',
     33         'open-vcdiff/src/headerparser.h',
     34         'open-vcdiff/src/instruction_map.cc',
     35         'open-vcdiff/src/instruction_map.h',
     36         'open-vcdiff/src/rolling_hash.h',
     37         'open-vcdiff/src/testing.h',
     38         'open-vcdiff/src/varint_bigendian.cc',
     39         'open-vcdiff/src/varint_bigendian.h',
     40         'open-vcdiff/src/vcdecoder.cc',
     41         'open-vcdiff/src/vcdiff_defs.h',
     42         'open-vcdiff/src/vcdiffengine.cc',
     43         'open-vcdiff/src/vcdiffengine.h',
     44         'open-vcdiff/vsprojects/config.h',
     45         'open-vcdiff/vsprojects/stdint.h',
     46       ],
     47       'include_dirs': [
     48         'open-vcdiff/src',
     49       ],
     50       'direct_dependent_settings': {
     51         'include_dirs': [
     52           'open-vcdiff/src',
     53         ],
     54       },
     55       'conditions': [
     56         [ 'OS == "linux" or OS == "android"', { 'include_dirs': [ 'linux' ] } ],
     57         [ 'os_bsd==1 or OS=="solaris"', { 'include_dirs': [ 'bsd' ] } ],
     58         [ 'OS == "ios"', { 'include_dirs': [ 'ios' ] } ],
     59         [ 'OS == "mac"', { 'include_dirs': [ 'mac' ] } ],
     60         [ 'OS == "win"', { 'include_dirs': [ 'win' ] } ],
     61       ],
     62       # open-vcdiff's logging.h introduces static initializers. This was
     63       # reported upstream years ago (
     64       # https://code.google.com/p/open-vcdiff/issues/detail?id=33 ). Since
     65       # upstream won't fix this, work around it on the chromium side:
     66       # Inject a header that forwards to base/logging.h instead (which doesn't
     67       # introduce static initializers, and which prevents open-vcdiff's
     68       # logging.h from being used).
     69       'variables': {
     70         'logging_path': 'logging_forward.h',
     71         'conditions': [
     72           # gyp leaves unspecified what the cwd is when running the compiler,
     73           # and gyp/linux doesn't have a built-in way for forcing an include.
     74           # So hardcode the base directory. If this spreads, provide native
     75           # support in gyp, like we have for gyp/mac and gyp/windows.
     76           # path.
     77           ['"<(GENERATOR)"=="ninja"', { 'logging_dir': '../..' },
     78                                       { 'logging_dir': '.' }
     79           ],
     80         ],
     81       },
     82       # GCC_PREFIX_HEADER is relative to the current directory,
     83       # ForcedIncludeFiles is relative to include_dirs, cflags relative to the
     84       # build directory.
     85       'xcode_settings': { 'GCC_PREFIX_HEADER': '<(logging_path)' },
     86       'msvs_system_include_dirs': [
     87         '<(DEPTH)/build',
     88       ],
     89       'msvs_settings': {
     90         'VCCLCompilerTool': {
     91           'ForcedIncludeFiles': [
     92             'intsafe_workaround.h',  # http://crbug.com/308740
     93             'sdch/<(logging_path)',
     94           ]
     95         }
     96       },
     97       'cflags': [
     98         '-include', '<(logging_dir)/sdch/<(logging_path)',
     99         # TODO(mostynb): remove this if open-vcdiff is ever updated for c++11:
    100         '-Wno-deprecated-declarations',
    101       ],
    102     },
    103   ],
    104 }
    105