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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 "-fno-builtin-sinf", | 218 "-fno-builtin-sinf", |
219 ] | 219 ] |
220 } | 220 } |
221 | 221 |
222 if (use_libfuzzer || use_drfuzz) { | 222 if (use_libfuzzer || use_drfuzz) { |
223 # Used in Chromium's overrides to disable logging | 223 # Used in Chromium's overrides to disable logging |
224 defines += [ "WEBRTC_UNSAFE_FUZZER_MODE" ] | 224 defines += [ "WEBRTC_UNSAFE_FUZZER_MODE" ] |
225 } | 225 } |
226 } | 226 } |
227 | 227 |
| 228 config("common_objc") { |
| 229 cflags = [ "-Wobjc-missing-property-synthesis" ] |
| 230 |
| 231 precompiled_header = "sdk/objc/WebRTC-Prefix.pch" |
| 232 precompiled_source = "sdk/objc/WebRTC-Prefix.pch" |
| 233 } |
| 234 |
228 source_set("webrtc") { | 235 source_set("webrtc") { |
229 sources = [ | 236 sources = [ |
230 "call.h", | 237 "call.h", |
231 "config.h", | 238 "config.h", |
232 "transport.h", | 239 "transport.h", |
233 ] | 240 ] |
234 | 241 |
235 defines = [] | 242 defines = [] |
236 configs += [ ":common_config" ] | 243 configs += [ ":common_config" ] |
237 public_configs = [ ":common_inherited_config" ] | 244 public_configs = [ ":common_inherited_config" ] |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
563 "base:rtc_task_queue", | 570 "base:rtc_task_queue", |
564 "p2p:libstunprober", | 571 "p2p:libstunprober", |
565 "p2p:rtc_p2p", | 572 "p2p:rtc_p2p", |
566 "//testing/gmock", | 573 "//testing/gmock", |
567 "//testing/gtest", | 574 "//testing/gtest", |
568 ] | 575 ] |
569 | 576 |
570 if (is_android) { | 577 if (is_android) { |
571 deps += [ "//testing/android/native_test:native_test_support" ] | 578 deps += [ "//testing/android/native_test:native_test_support" ] |
572 } | 579 } |
| 580 |
| 581 if (is_ios || (is_mac && mac_deployment_target == "10.7")) { |
| 582 deps += [ |
| 583 "sdk:rtc_sdk_peerconnection_objc", |
| 584 "system_wrappers:system_wrappers_default", |
| 585 ] |
| 586 sources += [ |
| 587 "sdk/objc/Framework/UnitTests/RTCConfigurationTest.mm", |
| 588 "sdk/objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm", |
| 589 "sdk/objc/Framework/UnitTests/RTCIceCandidateTest.mm", |
| 590 "sdk/objc/Framework/UnitTests/RTCIceServerTest.mm", |
| 591 "sdk/objc/Framework/UnitTests/RTCMediaConstraintsTest.mm", |
| 592 "sdk/objc/Framework/UnitTests/RTCSessionDescriptionTest.mm", |
| 593 ] |
| 594 |
| 595 # TODO(tkchin): Cleanup this warning. |
| 596 cflags = [ "-Wno-objc-property-no-attribute" ] |
| 597 |
| 598 # |-ObjC| flag needed to make sure category method implementations |
| 599 # are included: |
| 600 # https://developer.apple.com/library/mac/qa/qa1490/_index.html |
| 601 ldflags = [ "-ObjC" ] |
| 602 } |
573 } | 603 } |
574 } | 604 } |
OLD | NEW |