commit-bot@chromium.org | e3bb3bc | 2013-12-03 18:16:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | * |
| 7 | * A common place to put the jsoncpp library includes, as opposed to littering |
| 8 | * the pragmas repeatedly through our code. |
| 9 | */ |
| 10 | #ifndef SkJSONCPP_DEFINED |
| 11 | #define SkJSONCPP_DEFINED |
| 12 | |
mtklein | 3f915c0 | 2015-01-14 05:02:39 -0800 | [diff] [blame] | 13 | #ifdef GOOGLE3 |
| 14 | #include "third_party/jsoncpp/reader.h" |
| 15 | #include "third_party/jsoncpp/value.h" |
| 16 | #include "third_party/jsoncpp/writer.h" |
| 17 | #else |
| 18 | #ifdef SK_BUILD_FOR_WIN |
| 19 | // json includes xlocale which generates warning 4530 because we're |
| 20 | // compiling without exceptions; |
| 21 | // see https://code.google.com/p/skia/issues/detail?id=1067 |
| 22 | #pragma warning(push) |
| 23 | #pragma warning(disable : 4530) |
| 24 | #endif |
| 25 | #include "json/reader.h" |
| 26 | #include "json/value.h" |
| 27 | #include "json/writer.h" |
| 28 | #ifdef SK_BUILD_FOR_WIN |
| 29 | #pragma warning(pop) |
| 30 | #endif |
commit-bot@chromium.org | e3bb3bc | 2013-12-03 18:16:48 +0000 | [diff] [blame] | 31 | #endif |
| 32 | |
commit-bot@chromium.org | 61744ec | 2014-05-16 13:15:41 +0000 | [diff] [blame] | 33 | #endif // SkJSONCPP_DEFINED |