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("../webrtc.gni") | 9 import("../webrtc.gni") |
10 | 10 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 ] | 51 ] |
52 | 52 |
53 if (!build_with_chromium && is_clang) { | 53 if (!build_with_chromium && is_clang) { |
54 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 54 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
55 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 55 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
56 } | 56 } |
57 | 57 |
58 deps = [ | 58 deps = [ |
59 "..:webrtc_common", | 59 "..:webrtc_common", |
60 "../api:transport_api", | 60 "../api:transport_api", |
| 61 "../api:video_decoder_api", |
| 62 "../api:video_encoder_api", |
61 "../base:rtc_base_approved", | 63 "../base:rtc_base_approved", |
62 "../base:rtc_numerics", | 64 "../base:rtc_numerics", |
63 "../base:rtc_task_queue", | 65 "../base:rtc_task_queue", |
64 "../common_video", | 66 "../common_video", |
65 "../logging:rtc_event_log_api", | 67 "../logging:rtc_event_log_api", |
66 "../media:rtc_media_base", | 68 "../media:rtc_media_base", |
67 "../modules/bitrate_controller", | 69 "../modules/bitrate_controller", |
68 "../modules/congestion_controller", | 70 "../modules/congestion_controller", |
69 "../modules/pacing", | 71 "../modules/pacing", |
70 "../modules/remote_bitrate_estimator", | 72 "../modules/remote_bitrate_estimator", |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 163 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
162 } | 164 } |
163 } | 165 } |
164 | 166 |
165 rtc_executable("video_replay") { | 167 rtc_executable("video_replay") { |
166 testonly = true | 168 testonly = true |
167 sources = [ | 169 sources = [ |
168 "replay.cc", | 170 "replay.cc", |
169 ] | 171 ] |
170 deps = [ | 172 deps = [ |
| 173 "../api:video_decoder_api", |
171 "../system_wrappers:metrics_default", | 174 "../system_wrappers:metrics_default", |
172 "../test:field_trial", | 175 "../test:field_trial", |
173 "../test:run_test", | 176 "../test:run_test", |
174 "../test:test_common", | 177 "../test:test_common", |
175 "../test:test_renderer", | 178 "../test:test_renderer", |
176 "//third_party/gflags", | 179 "//third_party/gflags", |
177 ] | 180 ] |
178 if (!build_with_chromium && is_clang) { | 181 if (!build_with_chromium && is_clang) { |
179 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 182 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
180 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 183 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 ] | 215 ] |
213 if (!build_with_chromium && is_clang) { | 216 if (!build_with_chromium && is_clang) { |
214 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 217 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
215 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 218 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
216 } | 219 } |
217 if (rtc_use_h264) { | 220 if (rtc_use_h264) { |
218 defines += [ "WEBRTC_USE_H264" ] | 221 defines += [ "WEBRTC_USE_H264" ] |
219 } | 222 } |
220 } | 223 } |
221 } | 224 } |
OLD | NEW |