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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
# 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")
declare_args() {
# Enables trace logging in build. This is true by default, unless
# we are built against Chrome--we have no way to link their platform
# implementation into our binaries so trace logging is not possible.
enable_trace_logging = !build_with_chromium
}
config("trace_logging_config") {
if (enable_trace_logging) {
defines = [ "ENABLE_TRACE_LOGGING" ]
}
}
# The set of util classes which have no dependency on platform:api.
source_set("base") {
sources = [
"base64.cc",
"base64.h",
"big_endian.cc",
"big_endian.h",
"chrono_helpers.h",
"enum_name_table.h",
"flat_map.h",
"hashing.h",
"integer_division.h",
"json/json_helpers.h",
"json/json_serialization.cc",
"json/json_serialization.h",
"json/json_value.cc",
"json/json_value.h",
"osp_logging.h",
"saturate_cast.h",
"simple_fraction.cc",
"simple_fraction.h",
"std_util.cc",
"std_util.h",
"stringprintf.cc",
"stringprintf.h",
"url.cc",
"url.h",
"weak_ptr.h",
"yet_another_bit_vector.cc",
"yet_another_bit_vector.h",
]
public_deps = [
"../platform:base",
"../platform:logging",
"../third_party/abseil",
"../third_party/jsoncpp",
]
deps = [
"../third_party/mozilla",
# We do a clone of Chrome's modp_b64 in order to share their BUILD.gn
# and license files, so this should always be an absolute reference.
"//third_party/modp_b64",
]
public_configs = [ "../build:openscreen_include_dirs" ]
}
source_set("util") {
sources = [
"alarm.cc",
"alarm.h",
"crypto/certificate_utils.cc",
"crypto/certificate_utils.h",
"crypto/digest_sign.cc",
"crypto/digest_sign.h",
"crypto/openssl_util.cc",
"crypto/openssl_util.h",
"crypto/pem_helpers.cc",
"crypto/pem_helpers.h",
"crypto/random_bytes.cc",
"crypto/random_bytes.h",
"crypto/rsa_private_key.cc",
"crypto/rsa_private_key.h",
"crypto/secure_hash.cc",
"crypto/secure_hash.h",
"crypto/sha2.cc",
"crypto/sha2.h",
"trace_logging.h",
"trace_logging/macro_support.h",
"trace_logging/scoped_trace_operations.cc",
"trace_logging/scoped_trace_operations.h",
]
public_deps = [
":base",
"../platform:api",
"../platform:base",
"../third_party/abseil",
"../third_party/jsoncpp",
]
deps = [ "../third_party/boringssl" ]
public_configs = [
"../build:openscreen_include_dirs",
":trace_logging_config",
]
}
source_set("unittests") {
testonly = true
sources = [
"alarm_unittest.cc",
"base64_unittest.cc",
"big_endian_unittest.cc",
"crypto/certificate_utils_unittest.cc",
"crypto/random_bytes_unittest.cc",
"crypto/rsa_private_key_unittest.cc",
"crypto/secure_hash_unittest.cc",
"crypto/sha2_unittest.cc",
"enum_name_table_unittest.cc",
"flat_map_unittest.cc",
"integer_division_unittest.cc",
"json/json_helpers_unittest.cc",
"json/json_serialization_unittest.cc",
"json/json_value_unittest.cc",
"saturate_cast_unittest.cc",
"simple_fraction_unittest.cc",
"stringprintf_unittest.cc",
"trace_logging/scoped_trace_operations_unittest.cc",
"url_unittest.cc",
"weak_ptr_unittest.cc",
"yet_another_bit_vector_unittest.cc",
]
# The trace logging unittests depend on macros only defined
# when trace logging is enabled.
if (enable_trace_logging) {
sources += [ "trace_logging_unittest.cc" ]
}
deps = [
":util",
"../platform:test",
"../third_party/abseil",
"../third_party/boringssl",
"../third_party/googletest:gmock",
"../third_party/googletest:gtest",
"../third_party/jsoncpp",
]
}
|