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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 "-fno-builtin-cos", | 160 "-fno-builtin-cos", |
161 "-fno-builtin-sin", | 161 "-fno-builtin-sin", |
162 "-fno-builtin-cosf", | 162 "-fno-builtin-cosf", |
163 "-fno-builtin-sinf", | 163 "-fno-builtin-sinf", |
164 ] | 164 ] |
165 } | 165 } |
166 } | 166 } |
167 | 167 |
168 source_set("webrtc") { | 168 source_set("webrtc") { |
169 sources = [ | 169 sources = [ |
| 170 "audio_send_stream.h", |
| 171 "audio_state.h", |
170 "call.h", | 172 "call.h", |
171 "config.h", | 173 "video_decoder.h", |
172 "frame_callback.h", | 174 "video_encoder.h", |
173 "transport.h", | 175 "video_frame.h", |
174 ] | 176 ] |
175 | 177 |
176 defines = [] | 178 defines = [] |
177 configs += [ ":common_config" ] | 179 configs += [ ":common_config" ] |
178 public_configs = [ ":common_inherited_config" ] | 180 public_configs = [ ":common_inherited_config" ] |
179 | 181 |
180 deps = [ | 182 deps = [ |
181 ":webrtc_common", | 183 ":webrtc_common", |
182 "audio", | 184 "audio", |
183 "base:rtc_base", | 185 "base:rtc_base", |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 ":webrtc", | 223 ":webrtc", |
222 "modules/video_capture:video_capture_internal_impl", | 224 "modules/video_capture:video_capture_internal_impl", |
223 "modules/video_render:video_render_internal_impl", | 225 "modules/video_render:video_render_internal_impl", |
224 "test", | 226 "test", |
225 ] | 227 ] |
226 } | 228 } |
227 } | 229 } |
228 | 230 |
229 source_set("webrtc_common") { | 231 source_set("webrtc_common") { |
230 sources = [ | 232 sources = [ |
| 233 "audio_receive_stream.h", |
| 234 "audio_sink.h", |
231 "common_types.cc", | 235 "common_types.cc", |
232 "common_types.h", | 236 "common_types.h", |
233 "config.cc", | 237 "config.cc", |
234 "config.h", | 238 "config.h", |
235 "engine_configurations.h", | 239 "engine_configurations.h", |
| 240 "frame_callback.h", |
| 241 "stream.h", |
| 242 "transport.h", |
236 "typedefs.h", | 243 "typedefs.h", |
| 244 "video_receive_stream.h", |
| 245 "video_renderer.h", |
| 246 "video_send_stream.h", |
237 ] | 247 ] |
238 | 248 |
239 configs += [ ":common_config" ] | 249 configs += [ ":common_config" ] |
240 public_configs = [ ":common_inherited_config" ] | 250 public_configs = [ ":common_inherited_config" ] |
241 | 251 |
242 if (is_clang && !is_nacl) { | 252 if (is_clang && !is_nacl) { |
243 # Suppress warnings from Chrome's Clang plugins. | 253 # Suppress warnings from Chrome's Clang plugins. |
244 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 254 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
245 configs -= [ "//build/config/clang:find_bad_constructs" ] | 255 configs -= [ "//build/config/clang:find_bad_constructs" ] |
246 } | 256 } |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 if (use_libfuzzer || use_drfuzz) { | 293 if (use_libfuzzer || use_drfuzz) { |
284 # This target is only here for gn to discover fuzzer build targets under | 294 # This target is only here for gn to discover fuzzer build targets under |
285 # webrtc/test/fuzzers/. | 295 # webrtc/test/fuzzers/. |
286 group("webrtc_fuzzers_dummy") { | 296 group("webrtc_fuzzers_dummy") { |
287 testonly = true | 297 testonly = true |
288 deps = [ | 298 deps = [ |
289 "test/fuzzers:webrtc_fuzzer_main", | 299 "test/fuzzers:webrtc_fuzzer_main", |
290 ] | 300 ] |
291 } | 301 } |
292 } | 302 } |
OLD | NEW |