blob: 177ed370a1142a624fb618688d9473bc2d99e2cd [file] [log] [blame]
# Copyright 2019 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("json_parser") {
sources = [
"in_process_json_parser.cc",
"in_process_json_parser.h",
]
public_deps = [ "//base" ]
}
source_set("unit_tests") {
testonly = true
sources = [ "in_process_json_parser_unittest.cc" ]
deps = [
":json_parser",
"//base",
"//base/test:test_support",
"//testing/gtest",
]
}