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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
94 # if (is_freebsd) { | 94 # if (is_freebsd) { |
95 # defines += [ "FREEBSD" ] | 95 # defines += [ "FREEBSD" ] |
96 # } | 96 # } |
97 } | 97 } |
98 | 98 |
99 config("common_config") { | 99 config("common_config") { |
100 cflags = [] | 100 cflags = [] |
101 cflags_cc = [] | 101 cflags_cc = [] |
102 defines = [] | 102 defines = [] |
103 | 103 |
104 if (rtc_enable_protobuf) { | |
105 defines += [ "WEBRTC_ENABLE_PROTOBUF" ] | |
106 } | |
kwiberg-webrtc
2017/03/22 10:03:22
(See the comment about -Wundef.) This would become
mbonadei
2017/03/23 16:13:58
Done.
| |
107 | |
104 if (rtc_restrict_logging) { | 108 if (rtc_restrict_logging) { |
105 defines += [ "WEBRTC_RESTRICT_LOGGING" ] | 109 defines += [ "WEBRTC_RESTRICT_LOGGING" ] |
106 } | 110 } |
107 | 111 |
108 if (rtc_include_internal_audio_device) { | 112 if (rtc_include_internal_audio_device) { |
109 defines += [ "WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE" ] | 113 defines += [ "WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE" ] |
110 } | 114 } |
111 | 115 |
112 if (rtc_relative_path) { | 116 if (rtc_relative_path) { |
113 defines += [ "EXPAT_RELATIVE_PATH" ] | 117 defines += [ "EXPAT_RELATIVE_PATH" ] |
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
510 ] | 514 ] |
511 | 515 |
512 deps = [ | 516 deps = [ |
513 "//base:base_java_test_support", | 517 "//base:base_java_test_support", |
514 "//webrtc/examples:AppRTCMobile_javalib", | 518 "//webrtc/examples:AppRTCMobile_javalib", |
515 "//webrtc/sdk/android:libjingle_peerconnection_java", | 519 "//webrtc/sdk/android:libjingle_peerconnection_java", |
516 ] | 520 ] |
517 } | 521 } |
518 } | 522 } |
519 } | 523 } |
OLD | NEW |