| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 import("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
| 10 | 10 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 } | 45 } |
| 46 | 46 |
| 47 deps = [ | 47 deps = [ |
| 48 "../..:webrtc_common", | 48 "../..:webrtc_common", |
| 49 "../../base:rtc_base_approved", | 49 "../../base:rtc_base_approved", |
| 50 "../../system_wrappers", | 50 "../../system_wrappers", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| 53 | 53 |
| 54 if (rtc_include_tests) { | 54 if (rtc_include_tests) { |
| 55 rtc_static_library("bwe_simulator") { | 55 rtc_static_library("bwe_simulator_lib") { |
| 56 testonly = true | 56 testonly = true |
| 57 sources = [ | 57 sources = [ |
| 58 "bwe_simulations.cc", | |
| 59 "test/bwe.cc", | 58 "test/bwe.cc", |
| 60 "test/bwe.h", | 59 "test/bwe.h", |
| 61 "test/bwe_test.cc", | 60 "test/bwe_test.cc", |
| 62 "test/bwe_test.h", | 61 "test/bwe_test.h", |
| 63 "test/bwe_test_baselinefile.cc", | 62 "test/bwe_test_baselinefile.cc", |
| 64 "test/bwe_test_baselinefile.h", | 63 "test/bwe_test_baselinefile.h", |
| 65 "test/bwe_test_fileutils.cc", | 64 "test/bwe_test_fileutils.cc", |
| 66 "test/bwe_test_fileutils.h", | 65 "test/bwe_test_fileutils.h", |
| 67 "test/bwe_test_framework.cc", | 66 "test/bwe_test_framework.cc", |
| 68 "test/bwe_test_framework.h", | 67 "test/bwe_test_framework.h", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 } | 102 } |
| 104 | 103 |
| 105 deps = [ | 104 deps = [ |
| 106 "../../test:test_support", | 105 "../../test:test_support", |
| 107 "../pacing", | 106 "../pacing", |
| 108 "//testing/gmock", | 107 "//testing/gmock", |
| 109 "//testing/gtest", | 108 "//testing/gtest", |
| 110 ] | 109 ] |
| 111 } | 110 } |
| 112 } | 111 } |
| OLD | NEW |