aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/jsoncpp/BUILD.gn
blob: 4122692dcf7a8a3519c832fe6a19a4f1bb26b177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2016 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

declare_args() {
}

import("../third_party.gni")

third_party("jsoncpp") {
  public_include_dirs = [ "../externals/jsoncpp/include" ]

  defines = [ "JSON_USE_EXCEPTION=0" ]
  sources = [
    "../externals/jsoncpp/src/lib_json/json_reader.cpp",
    "../externals/jsoncpp/src/lib_json/json_value.cpp",
    "../externals/jsoncpp/src/lib_json/json_writer.cpp",
  ]
  testonly = true
}