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