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