| # Copyright 2019 The Chromium Authors. All rights reserved. | |
| # 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", | |
| ] | |
| } |