aboutsummaryrefslogtreecommitdiff
path: root/osp_base/BUILD.gn
blob: d8b1e3c52baa16ebe0962951dbbb213ce8be2fa7 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# 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.

import("//build_overrides/build.gni")

source_set("osp_base") {
  sources = [
    "big_endian.cc",
    "big_endian.h",
    "boringssl_util.cc",
    "boringssl_util.h",
    "error.cc",
    "error.h",
    "export.h",
    "ip_address.cc",
    "ip_address.h",
    "json/json_reader.cc",
    "json/json_reader.h",
    "json/json_writer.cc",
    "json/json_writer.h",
    "location.cc",
    "location.h",
    "macros.h",
    "scoped_pipe.h",
    "stringprintf.h",
    "time.h",
    "with_destruction_callback.cc",
    "with_destruction_callback.h",
  ]

  deps = [
    "../third_party/abseil",
    "../third_party/boringssl",
    "../third_party/jsoncpp",
  ]

  configs += [ "../build:allow_build_from_embedder" ]
}

source_set("osp_base_unittests") {
  testonly = true

  sources = [
    "big_endian_unittest.cc",
    "error_unittest.cc",
    "ip_address_unittest.cc",
    "json/json_reader_unittest.cc",
    "json/json_writer_unittest.cc",
    "location_unittest.cc",
    "scoped_pipe_unittest.cc",
  ]

  deps = [
    ":osp_base",
    "../third_party/abseil",
    "../third_party/googletest:gmock",
    "../third_party/googletest:gtest",
    "../third_party/jsoncpp",
  ]

  configs += [ "../build:allow_build_from_embedder" ]
}