blob: dce0c3d23d76054a247f696774891dc032abe7ce [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',
19 'src/lib_json/json_internalarray.inl.h',
20 'src/lib_json/json_internalmap.inl.h',
21 'src/lib_json/json_reader.cpp',
22 'src/lib_json/json_value.cpp',
23 'src/lib_json/json_valueiterator.inl.h',
24 '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: