| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 | 7 |
| 8 # From third_party/libjingle/libjingle.gyp's target_defaults. | 8 # From third_party/libjingle/libjingle.gyp's target_defaults. |
| 9 config("jingle_unexported_configs") { | 9 config("jingle_unexported_configs") { |
| 10 defines = [ | 10 defines = [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "source", | 29 "source", |
| 30 "../../testing/gtest/include", | 30 "../../testing/gtest/include", |
| 31 "../../third_party", | 31 "../../third_party", |
| 32 "../../third_party/libyuv/include", | 32 "../../third_party/libyuv/include", |
| 33 "../../third_party/usrsctp", | 33 "../../third_party/usrsctp", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 # Assumes libpeer is linked statically. | 36 # Assumes libpeer is linked statically. |
| 37 defines += [ "LIBPEERCONNECTION_LIB=1" ] | 37 defines += [ "LIBPEERCONNECTION_LIB=1" ] |
| 38 | 38 |
| 39 if (is_win && cpu_arch == "x86") { | 39 if (is_win && current_cpu == "x86") { |
| 40 defines += [ "_USE_32BIT_TIME_T" ] | 40 defines += [ "_USE_32BIT_TIME_T" ] |
| 41 } | 41 } |
| 42 | 42 |
| 43 if (use_openssl) { | 43 if (use_openssl) { |
| 44 defines += [ | 44 defines += [ |
| 45 "SSL_USE_OPENSSL", | 45 "SSL_USE_OPENSSL", |
| 46 "HAVE_OPENSSL_SSL_H", | 46 "HAVE_OPENSSL_SSL_H", |
| 47 ] | 47 ] |
| 48 } else { | 48 } else { |
| 49 defines += [ | 49 defines += [ |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 "source/talk/app/webrtc/java/src/org/webrtc/StatsReport.java", | 568 "source/talk/app/webrtc/java/src/org/webrtc/StatsReport.java", |
| 569 "source/talk/app/webrtc/java/src/org/webrtc/SessionDescription.java", | 569 "source/talk/app/webrtc/java/src/org/webrtc/SessionDescription.java", |
| 570 "source/talk/app/webrtc/java/src/org/webrtc/VideoCapturer.java", | 570 "source/talk/app/webrtc/java/src/org/webrtc/VideoCapturer.java", |
| 571 "source/talk/app/webrtc/java/src/org/webrtc/VideoRenderer.java", | 571 "source/talk/app/webrtc/java/src/org/webrtc/VideoRenderer.java", |
| 572 "source/talk/app/webrtc/java/src/org/webrtc/VideoSource.java", | 572 "source/talk/app/webrtc/java/src/org/webrtc/VideoSource.java", |
| 573 "source/talk/app/webrtc/java/src/org/webrtc/VideoTrack.java", | 573 "source/talk/app/webrtc/java/src/org/webrtc/VideoTrack.java", |
| 574 ] | 574 ] |
| 575 } | 575 } |
| 576 } # enable_webrtc | 576 } # enable_webrtc |
| 577 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. | 577 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. |
| OLD | NEW |