| 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 } | 208 } |
| 209 | 209 |
| 210 if (use_libfuzzer || use_drfuzz || use_afl) { | 210 if (use_libfuzzer || use_drfuzz || use_afl) { |
| 211 # Used in Chromium's overrides to disable logging | 211 # Used in Chromium's overrides to disable logging |
| 212 defines += [ "WEBRTC_UNSAFE_FUZZER_MODE" ] | 212 defines += [ "WEBRTC_UNSAFE_FUZZER_MODE" ] |
| 213 } | 213 } |
| 214 } | 214 } |
| 215 | 215 |
| 216 config("common_objc") { | 216 config("common_objc") { |
| 217 libs = [ "Foundation.framework" ] | 217 libs = [ "Foundation.framework" ] |
| 218 precompiled_header = "sdk/objc/WebRTC-Prefix.pch" | |
| 219 precompiled_source = "sdk/objc/WebRTC-Prefix.pch" | |
| 220 } | 218 } |
| 221 | 219 |
| 222 if (!build_with_chromium) { | 220 if (!build_with_chromium) { |
| 223 # Target to build all the WebRTC production code. | 221 # Target to build all the WebRTC production code. |
| 224 rtc_static_library("webrtc") { | 222 rtc_static_library("webrtc") { |
| 225 # Only the root target should depend on this. | 223 # Only the root target should depend on this. |
| 226 visibility = [ "//:default" ] | 224 visibility = [ "//:default" ] |
| 227 | 225 |
| 228 sources = [ | 226 sources = [ |
| 229 # TODO(kjellander): Remove this whenever possible. GN's static_library | 227 # TODO(kjellander): Remove this whenever possible. GN's static_library |
| (...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 ] | 707 ] |
| 710 | 708 |
| 711 deps = [ | 709 deps = [ |
| 712 "//base:base_java_test_support", | 710 "//base:base_java_test_support", |
| 713 "//webrtc/examples:AppRTCMobile_javalib", | 711 "//webrtc/examples:AppRTCMobile_javalib", |
| 714 "//webrtc/sdk/android:libjingle_peerconnection_java", | 712 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 715 ] | 713 ] |
| 716 } | 714 } |
| 717 } | 715 } |
| 718 } | 716 } |
| OLD | NEW |