| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'includes': [ |
| 7 'jsoncpp.gypi', |
| 8 ], |
| 6 'targets': [ | 9 'targets': [ |
| 7 { | 10 { |
| 8 'target_name': 'jsoncpp', | 11 'target_name': 'jsoncpp', |
| 9 'type': 'static_library', | 12 '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 }, | 13 }, |
| 41 ], | 14 ], |
| 42 } | 15 } |
| 43 | 16 |
| 44 # Local Variables: | 17 # Local Variables: |
| 45 # tab-width:2 | 18 # tab-width:2 |
| 46 # indent-tabs-mode:nil | 19 # indent-tabs-mode:nil |
| 47 # End: | 20 # End: |
| 48 # vim: set expandtab tabstop=2 shiftwidth=2: | 21 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |