blob: 0507ed06a1629332da5eb020b51b1b771f4fd6b9 [file] [log] [blame]
epoger@google.comee8a8e32012-12-18 19:13:49 +00001# 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# TODO: This file was copied from the external dependency
epoger@google.com5a5e29e2013-01-15 17:16:51 +00006# third_party/externals/jsoncpp-chromium/jsoncpp.gyp , at revision 125399,
epoger@google.comee8a8e32012-12-18 19:13:49 +00007# with directory paths modified to work at this level.
8#
9# It would be better for us to depend on that gypfile within the external
10# dependency, but so far we have been unable to make that work reliably.
11# See https://code.google.com/p/skia/issues/detail?id=1023
epoger@google.com5a5e29e2013-01-15 17:16:51 +000012# and https://code.google.com/p/skia/source/detail?r=7115
epoger@google.comee8a8e32012-12-18 19:13:49 +000013
14{
borenet@google.coma72aef82013-03-22 13:16:06 +000015 'variables': {
16 'skia_warnings_as_errors': 0,
17 },
epoger@google.comee8a8e32012-12-18 19:13:49 +000018 'targets': [
19 {
20 'target_name': 'jsoncpp',
21 'type': 'static_library',
commit-bot@chromium.org61744ec2014-05-16 13:15:41 +000022 'conditions': [
23 ['skia_build_json_writer', {
24 'defines': [
25 'JSON_USE_EXCEPTION=0',
26 ],
27 'sources': [
28 '../third_party/externals/jsoncpp/include/json/assertions.h',
29 '../third_party/externals/jsoncpp/include/json/autolink.h',
30 '../third_party/externals/jsoncpp/include/json/config.h',
31 '../third_party/externals/jsoncpp/include/json/features.h',
32 '../third_party/externals/jsoncpp/include/json/forwards.h',
33 '../third_party/externals/jsoncpp/include/json/json.h',
34 '../third_party/externals/jsoncpp/include/json/reader.h',
35 '../third_party/externals/jsoncpp-chromium/overrides/include/json/value.h',
36 '../third_party/externals/jsoncpp/include/json/writer.h',
37 '../third_party/externals/jsoncpp/src/lib_json/json_batchallocator.h',
38 '../third_party/externals/jsoncpp/src/lib_json/json_reader.cpp',
39 '../third_party/externals/jsoncpp/src/lib_json/json_tool.h',
40 '../third_party/externals/jsoncpp-chromium/overrides/src/lib_json/json_value.cpp',
41 '../third_party/externals/jsoncpp/src/lib_json/json_writer.cpp',
42 ],
43 'include_dirs': [
44 '../third_party/externals/jsoncpp-chromium/overrides/include/',
45 '../third_party/externals/jsoncpp/include/',
46 '../third_party/externals/jsoncpp/src/lib_json/',
47 ],
48 'direct_dependent_settings': {
49 'include_dirs': [
50 '../third_party/externals/jsoncpp-chromium/overrides/include/',
51 '../third_party/externals/jsoncpp/include/',
52 ],
53 },
54 'cflags': [
55 '-w',
56 ],
57 }],
reed@google.com4cbb3a12013-01-07 20:51:13 +000058 ],
epoger@google.comee8a8e32012-12-18 19:13:49 +000059 },
60 ],
61}