blob: 0ee402be050aade16da571fc5ad8422e842ad00e [file] [log] [blame]
Sebastian Janssoncabe3832018-01-12 10:54:18 +01001# Copyright (c) 2018 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_static_library("alr_experiment") {
12 sources = [
13 "alr_experiment.cc",
14 "alr_experiment.h",
15 ]
16 deps = [
17 "../:rtc_base_approved",
18 "../../api:optional",
19 "../../system_wrappers:field_trial_api",
20 ]
21}
Sebastian Jansson2808ae92018-04-09 11:13:04 +020022
23rtc_static_library("congestion_controller_experiment") {
24 sources = [
25 "congestion_controller_experiment.cc",
26 "congestion_controller_experiment.h",
27 ]
28 deps = [
29 "../:rtc_base_approved",
30 "../../api:optional",
31 "../../system_wrappers:field_trial_api",
32 ]
33}
34
35if (rtc_include_tests) {
36 rtc_source_set("experiments_unittests") {
37 testonly = true
38
39 sources = [
40 "congestion_controller_experiment_unittest.cc",
41 ]
42 deps = [
43 ":congestion_controller_experiment",
44 "../:rtc_base_tests_main",
45 "../:rtc_base_tests_utils",
46 "../../test:field_trial",
47 ]
48 }
49}