| OLD | NEW |
| (Empty) |
| 1 # Copyright 2013 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 'target_defaults': { | |
| 7 'defines': [ | |
| 8 'JSON_USE_EXCEPTION=0', | |
| 9 ], | |
| 10 'sources': [ | |
| 11 'source/include/json/assertions.h', | |
| 12 'source/include/json/autolink.h', | |
| 13 'source/include/json/config.h', | |
| 14 'source/include/json/features.h', | |
| 15 'source/include/json/forwards.h', | |
| 16 'source/include/json/json.h', | |
| 17 'source/include/json/reader.h', | |
| 18 'overrides/include/json/value.h', | |
| 19 'source/include/json/writer.h', | |
| 20 'source/src/lib_json/json_batchallocator.h', | |
| 21 'overrides/src/lib_json/json_reader.cpp', | |
| 22 'source/src/lib_json/json_tool.h', | |
| 23 'overrides/src/lib_json/json_value.cpp', | |
| 24 'source/src/lib_json/json_writer.cpp', | |
| 25 ], | |
| 26 'include_dirs': [ | |
| 27 '../..', | |
| 28 'overrides/include/', | |
| 29 'source/include/', | |
| 30 'source/src/lib_json/', | |
| 31 ], | |
| 32 'direct_dependent_settings': { | |
| 33 'include_dirs': [ | |
| 34 'overrides/include/', | |
| 35 'source/include/', | |
| 36 ], | |
| 37 }, | |
| 38 }, | |
| 39 } | |
| OLD | NEW |