blob: d6dc2af4eab0ccfc47dab29d86fa4ea308ee15d6 [file] [log] [blame]
niklase@google.com5c612332011-05-30 11:41:01 +00001# Copyright (c) 2011 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': '<(library)',
10 'sources': [
11 'include/json/autolink.h',
12 'include/json/config.h',
13 'include/json/forwards.h',
14 'include/json/json.h',
15 'include/json/reader.h',
16 'include/json/value.h',
17 'include/json/writer.h',
18 'src/lib_json/json_batchallocator.h',
ajm@google.com06313d52011-06-06 16:59:21 +000019 'src/lib_json/json_internalarray.inl',
20 'src/lib_json/json_internalmap.inl',
niklase@google.com5c612332011-05-30 11:41:01 +000021 'src/lib_json/json_reader.cpp',
22 'src/lib_json/json_value.cpp',
ajm@google.com06313d52011-06-06 16:59:21 +000023 'src/lib_json/json_valueiterator.inl',
niklase@google.com5c612332011-05-30 11:41:01 +000024 'src/lib_json/json_writer.cpp',
25 ],
26 'include_dirs': [
27 'include/',
28 ],
29 'direct_dependent_settings': {
30 'include_dirs': [
31 'include/',
32 ],
33 },
34 },
35 ],
36}
37
38# Local Variables:
39# tab-width:2
40# indent-tabs-mode:nil
41# End:
42# vim: set expandtab tabstop=2 shiftwidth=2: