blob: 7eacccc034fa6596e08ee1d6aef0c5e0dce768f8 (
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 2018 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("//media/media_options.gni")
assert(enable_webrtc)
source_set("common") {
sources = [
"partial_circular_buffer.cc",
"partial_circular_buffer.h",
]
deps = [ "//base" ]
}
source_set("unit_tests") {
testonly = true
sources = [ "partial_circular_buffer_unittest.cc" ]
deps = [
":common",
"//base",
"//testing/gtest",
]
}
|