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