| 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 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. | 9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. |
| 10 | 10 |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 "modules/utility", | 194 "modules/utility", |
| 195 "modules/video_coding", | 195 "modules/video_coding", |
| 196 "modules/video_processing", | 196 "modules/video_processing", |
| 197 "system_wrappers", | 197 "system_wrappers", |
| 198 "tools", | 198 "tools", |
| 199 "video", | 199 "video", |
| 200 "voice_engine", | 200 "voice_engine", |
| 201 ] | 201 ] |
| 202 | 202 |
| 203 if (build_with_chromium) { | 203 if (build_with_chromium) { |
| 204 deps += [ | 204 deps += [ "modules/video_capture" ] |
| 205 "modules/video_capture", | |
| 206 "modules/video_render", | |
| 207 ] | |
| 208 } | 205 } |
| 209 | 206 |
| 210 if (rtc_enable_protobuf) { | 207 if (rtc_enable_protobuf) { |
| 211 defines += [ "ENABLE_RTC_EVENT_LOG" ] | 208 defines += [ "ENABLE_RTC_EVENT_LOG" ] |
| 212 deps += [ ":rtc_event_log_proto" ] | 209 deps += [ ":rtc_event_log_proto" ] |
| 213 } | 210 } |
| 214 } | 211 } |
| 215 | 212 |
| 216 if (!build_with_chromium) { | 213 if (!build_with_chromium) { |
| 217 executable("webrtc_tests") { | 214 executable("webrtc_tests") { |
| 218 testonly = true | 215 testonly = true |
| 219 deps = [ | 216 deps = [ |
| 220 ":webrtc", | 217 ":webrtc", |
| 221 "modules/video_capture:video_capture_internal_impl", | 218 "modules/video_capture:video_capture_internal_impl", |
| 222 "modules/video_render:video_render_internal_impl", | |
| 223 "test", | 219 "test", |
| 224 ] | 220 ] |
| 225 } | 221 } |
| 226 } | 222 } |
| 227 | 223 |
| 228 source_set("webrtc_common") { | 224 source_set("webrtc_common") { |
| 229 sources = [ | 225 sources = [ |
| 230 "audio_sink.h", | 226 "audio_sink.h", |
| 231 "common_types.cc", | 227 "common_types.cc", |
| 232 "common_types.h", | 228 "common_types.h", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 if (use_libfuzzer || use_drfuzz) { | 281 if (use_libfuzzer || use_drfuzz) { |
| 286 # This target is only here for gn to discover fuzzer build targets under | 282 # This target is only here for gn to discover fuzzer build targets under |
| 287 # webrtc/test/fuzzers/. | 283 # webrtc/test/fuzzers/. |
| 288 group("webrtc_fuzzers_dummy") { | 284 group("webrtc_fuzzers_dummy") { |
| 289 testonly = true | 285 testonly = true |
| 290 deps = [ | 286 deps = [ |
| 291 "test/fuzzers:webrtc_fuzzer_main", | 287 "test/fuzzers:webrtc_fuzzer_main", |
| 292 ] | 288 ] |
| 293 } | 289 } |
| 294 } | 290 } |
| OLD | NEW |