- add sources.
[platform/framework/web/crosswalk.git] / src / third_party / jsoncpp / jsoncpp.gyp
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   'targets': [
7     {
8       'target_name': 'jsoncpp',
9       'type': 'static_library',
10       'defines': [
11         'JSON_USE_EXCEPTION=0',
12       ],
13       'sources': [
14         'source/include/json/assertions.h',
15         'source/include/json/autolink.h',
16         'source/include/json/config.h',
17         'source/include/json/features.h',
18         'source/include/json/forwards.h',
19         'source/include/json/json.h',
20         'source/include/json/reader.h',
21         'overrides/include/json/value.h',
22         'source/include/json/writer.h',
23         'source/src/lib_json/json_batchallocator.h',
24         'source/src/lib_json/json_reader.cpp',
25         'source/src/lib_json/json_tool.h',
26         'overrides/src/lib_json/json_value.cpp',
27         'source/src/lib_json/json_writer.cpp',
28       ],
29       'include_dirs': [
30         'overrides/include/',
31         'source/include/',
32         'source/src/lib_json/',
33       ],
34       'direct_dependent_settings': {
35         'include_dirs': [
36           'overrides/include/',
37           'source/include/',
38         ],
39       },
40     },
41   ],
42 }
43
44 # Local Variables:
45 # tab-width:2
46 # indent-tabs-mode:nil
47 # End:
48 # vim: set expandtab tabstop=2 shiftwidth=2: