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