summaryrefslogtreecommitdiffstats
path: root/components/json_schema/BUILD.gn
blob: 4e7b4355974958f567a2830def649e601473b68a (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
27
28
29
30
# Copyright 2014 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_schema") {
  sources = [
    "json_schema_constants.cc",
    "json_schema_constants.h",
    "json_schema_validator.cc",
    "json_schema_validator.h",
  ]

  deps = [
    "//base",
    "//third_party/re2",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "json_schema_validator_unittest.cc",
    "json_schema_validator_unittest_base.cc",
    "json_schema_validator_unittest_base.h",
  ]
  deps = [
    ":json_schema",
    "//testing/gtest",
  ]
}