Files
platform-external-webrtc/rtc_base/units/BUILD.gn
Sebastian Jansson 72bba625d5 Adds shared base class for data units.
This reduces code duplication and ensures common behavior
between the unit classes.

Bug: webrtc:9709
Change-Id: I9529ef10b3f538355f53250a2b67c6b4e250cce8
Reviewed-on: https://webrtc-review.googlesource.com/c/110901
Commit-Queue: Sebastian Jansson <srte@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#25690}
2018-11-19 12:41:33 +00:00

38 lines
846 B
Plaintext

# Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
import("../../webrtc.gni")
rtc_source_set("unit_base") {
visibility = [
"../../api/units:*",
":*",
]
sources = [
"unit_base.h",
]
deps = [
"../../rtc_base:checks",
"../../rtc_base:safe_conversions",
]
}
if (rtc_include_tests) {
rtc_source_set("units_unittests") {
testonly = true
sources = [
"unit_base_unittest.cc",
]
deps = [
":unit_base",
"../../test:test_support",
]
}
}