summaryrefslogtreecommitdiff
path: root/chromium/ios/chrome/browser/json_parser/BUILD.gn
blob: 666b01da120fad619112be9d45507a6839929c47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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",
  ]
}