Victor Boivie | f53127a | 2021-03-30 17:17:19 | [diff] [blame] | 1 | # 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 | |
| 9 | import("../../../webrtc.gni") |
| 10 | |
| 11 | rtc_source_set("testing_macros") { |
| 12 | testonly = true |
| 13 | sources = [ "testing_macros.h" ] |
| 14 | } |
Victor Boivie | 5f4ac67 | 2021-04-03 17:32:38 | [diff] [blame] | 15 | |
| 16 | rtc_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 Bonadei | b7854e4 | 2021-05-03 12:39:25 | [diff] [blame] | 23 | "../common:internal_types", |
| 24 | "../packet:data", |
| 25 | "../public:types", |
Victor Boivie | 5f4ac67 | 2021-04-03 17:32:38 | [diff] [blame] | 26 | ] |
| 27 | sources = [ |
| 28 | "data_generator.cc", |
| 29 | "data_generator.h", |
| 30 | ] |
Mirko Bonadei | b7854e4 | 2021-05-03 12:39:25 | [diff] [blame] | 31 | absl_deps = [ |
| 32 | "//third_party/abseil-cpp/absl/strings", |
| 33 | "//third_party/abseil-cpp/absl/types:optional", |
| 34 | ] |
Victor Boivie | 5f4ac67 | 2021-04-03 17:32:38 | [diff] [blame] | 35 | } |