jsoncpp.gyp 2.93 KB
Newer Older
1 2 3 4 5
# Copyright (c) 2012 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.

# TODO: This file was copied from the external dependency
6
# third_party/externals/jsoncpp-chromium/jsoncpp.gyp , at revision 125399,
7 8 9 10 11
# with directory paths modified to work at this level.
#
# It would be better for us to depend on that gypfile within the external
# dependency, but so far we have been unable to make that work reliably.
# See https://code.google.com/p/skia/issues/detail?id=1023
12
# and https://code.google.com/p/skia/source/detail?r=7115
13 14 15 16 17 18 19 20 21 22

{
  'targets': [
    {
      'target_name': 'jsoncpp',
      'type': 'static_library',
      'defines': [
        'JSON_USE_EXCEPTION=0',
      ],
      'sources': [
23 24 25 26 27 28 29 30 31 32 33 34 35 36
        '../third_party/externals/jsoncpp/include/json/assertions.h',
        '../third_party/externals/jsoncpp/include/json/autolink.h',
        '../third_party/externals/jsoncpp/include/json/config.h',
        '../third_party/externals/jsoncpp/include/json/features.h',
        '../third_party/externals/jsoncpp/include/json/forwards.h',
        '../third_party/externals/jsoncpp/include/json/json.h',
        '../third_party/externals/jsoncpp/include/json/reader.h',
        '../third_party/externals/jsoncpp-chromium/overrides/include/json/value.h',
        '../third_party/externals/jsoncpp/include/json/writer.h',
        '../third_party/externals/jsoncpp/src/lib_json/json_batchallocator.h',
        '../third_party/externals/jsoncpp/src/lib_json/json_reader.cpp',
        '../third_party/externals/jsoncpp/src/lib_json/json_tool.h',
        '../third_party/externals/jsoncpp-chromium/overrides/src/lib_json/json_value.cpp',
        '../third_party/externals/jsoncpp/src/lib_json/json_writer.cpp',
37 38
      ],
      'include_dirs': [
39 40 41
        '../third_party/externals/jsoncpp-chromium/overrides/include/',
        '../third_party/externals/jsoncpp/include/',
        '../third_party/externals/jsoncpp/src/lib_json/',
42 43 44
      ],
      'direct_dependent_settings': {
        'include_dirs': [
45 46
          '../third_party/externals/jsoncpp-chromium/overrides/include/',
          '../third_party/externals/jsoncpp/include/',
47 48
        ],
      },
49 50 51 52 53 54 55 56
      'conditions': [
        [ 'skia_os == "mac"', {
          'xcode_settings': {
            'OTHER_CPLUSPLUSFLAGS!': [
              '-Werror',
            ]
          },
        }],
57 58 59 60 61 62 63
        [ 'skia_os == "win"', {
          'msvs_settings': {
            'VCCLCompilerTool': {
              'WarnAsError': 'false',
            },
          },
        }],
64 65 66 67 68 69
        [ 'skia_os == "android"', {
          'cflags!': [
            '-Wall',
            '-Werror',
          ],
        }],
70 71 72 73 74
        ['skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl"]', {
          'cflags!': [
            '-Werror',
          ],
        }],
75
      ],
76 77 78 79 80 81 82 83 84
    },
  ],
}

# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: