blob: 5367ef8c6f7bf98592a21e314ba88cef8831b1b3 [file] [log] [blame]
Victor Boivief53127a2021-03-30 17:17:191# Copyright (c) 2021 The WebRTC project authors. All Rights Reserved.
2#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
9import("../../../webrtc.gni")
10
11rtc_source_set("testing_macros") {
12 testonly = true
13 sources = [ "testing_macros.h" ]
14}
Victor Boivie5f4ac672021-04-03 17:32:3815
16rtc_library("data_generator") {
17 testonly = true
18 deps = [
19 "../../../api:array_view",
20 "../../../rtc_base",
21 "../../../rtc_base:checks",
22 "../../../rtc_base:rtc_base_approved",
Mirko Bonadeib7854e42021-05-03 12:39:2523 "../common:internal_types",
24 "../packet:data",
25 "../public:types",
Victor Boivie5f4ac672021-04-03 17:32:3826 ]
27 sources = [
28 "data_generator.cc",
29 "data_generator.h",
30 ]
Mirko Bonadeib7854e42021-05-03 12:39:2531 absl_deps = [
32 "//third_party/abseil-cpp/absl/strings",
33 "//third_party/abseil-cpp/absl/types:optional",
34 ]
Victor Boivie5f4ac672021-04-03 17:32:3835}