Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: webrtc/video/BUILD.gn

Issue 3010133002: Tightening visibility and removing a public_dep. (Closed)
Patch Set: Fixing rtc_test target Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/test/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 testonly = true 158 testonly = true
159 sources = [ 159 sources = [
160 "video_loopback.cc", 160 "video_loopback.cc",
161 ] 161 ]
162 deps = [ 162 deps = [
163 ":video_quality_test", 163 ":video_quality_test",
164 "../rtc_base:rtc_base_approved", 164 "../rtc_base:rtc_base_approved",
165 "../system_wrappers:metrics_default", 165 "../system_wrappers:metrics_default",
166 "../test:field_trial", 166 "../test:field_trial",
167 "../test:run_test", 167 "../test:run_test",
168 "../test:run_test_interface",
168 "../test:test_common", 169 "../test:test_common",
169 "../test:test_renderer", 170 "../test:test_renderer",
170 "../test:test_support", 171 "../test:test_support",
171 "//testing/gmock", 172 "//testing/gmock",
172 "//testing/gtest", 173 "//testing/gtest",
173 ] 174 ]
174 if (!build_with_chromium && is_clang) { 175 if (!build_with_chromium && is_clang) {
175 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 176 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
176 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 177 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
177 } 178 }
178 } 179 }
179 180
180 rtc_executable("screenshare_loopback") { 181 rtc_executable("screenshare_loopback") {
181 testonly = true 182 testonly = true
182 sources = [ 183 sources = [
183 "screenshare_loopback.cc", 184 "screenshare_loopback.cc",
184 ] 185 ]
185 186
186 deps = [ 187 deps = [
187 ":video_quality_test", 188 ":video_quality_test",
188 "../rtc_base:rtc_base_approved", 189 "../rtc_base:rtc_base_approved",
189 "../system_wrappers:metrics_default", 190 "../system_wrappers:metrics_default",
190 "../test:field_trial", 191 "../test:field_trial",
191 "../test:run_test", 192 "../test:run_test",
193 "../test:run_test_interface",
192 "../test:test_common", 194 "../test:test_common",
193 "../test:test_renderer", 195 "../test:test_renderer",
194 "../test:test_support", 196 "../test:test_support",
195 ] 197 ]
196 if (!build_with_chromium && is_clang) { 198 if (!build_with_chromium && is_clang) {
197 # Suppress warnings from Chrome's Clang plugins. 199 # Suppress warnings from Chrome's Clang plugins.
198 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 200 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
199 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 201 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
200 } 202 }
201 } 203 }
202 204
203 rtc_executable("video_replay") { 205 rtc_executable("video_replay") {
204 testonly = true 206 testonly = true
205 sources = [ 207 sources = [
206 "replay.cc", 208 "replay.cc",
207 ] 209 ]
208 deps = [ 210 deps = [
209 "..:webrtc_common", 211 "..:webrtc_common",
210 "../api/video_codecs:video_codecs_api", 212 "../api/video_codecs:video_codecs_api",
211 "../call:call_interfaces", 213 "../call:call_interfaces",
212 "../common_video", 214 "../common_video",
213 "../logging:rtc_event_log_api", 215 "../logging:rtc_event_log_api",
214 "../modules/rtp_rtcp", 216 "../modules/rtp_rtcp",
215 "../rtc_base:rtc_base_approved", 217 "../rtc_base:rtc_base_approved",
216 "../system_wrappers", 218 "../system_wrappers",
217 "../system_wrappers:metrics_default", 219 "../system_wrappers:metrics_default",
218 "../test:field_trial", 220 "../test:field_trial",
219 "../test:rtp_test_utils", 221 "../test:rtp_test_utils",
220 "../test:run_test", 222 "../test:run_test",
223 "../test:run_test_interface",
221 "../test:test_common", 224 "../test:test_common",
222 "../test:test_renderer", 225 "../test:test_renderer",
223 "../test:test_support", 226 "../test:test_support",
224 "../test:video_test_common", 227 "../test:video_test_common",
225 "../test:video_test_support", 228 "../test:video_test_support",
226 ] 229 ]
227 if (!build_with_chromium && is_clang) { 230 if (!build_with_chromium && is_clang) {
228 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 231 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
229 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 232 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
230 } 233 }
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 ] 305 ]
303 if (!build_with_chromium && is_clang) { 306 if (!build_with_chromium && is_clang) {
304 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 307 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
305 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 308 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
306 } 309 }
307 if (rtc_use_h264) { 310 if (rtc_use_h264) {
308 defines += [ "WEBRTC_USE_H264" ] 311 defines += [ "WEBRTC_USE_H264" ]
309 } 312 }
310 } 313 }
311 } 314 }
OLDNEW
« no previous file with comments | « webrtc/test/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698