OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 # This file contains common settings for building WebRTC components. | 9 # This file contains common settings for building WebRTC components. |
10 | 10 |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 # which can be easily parsed for offline processing. | 92 # which can be easily parsed for offline processing. |
93 'enable_data_logging%': 0, | 93 'enable_data_logging%': 0, |
94 | 94 |
95 # Enables the use of protocol buffers for debug recordings. | 95 # Enables the use of protocol buffers for debug recordings. |
96 'enable_protobuf%': 1, | 96 'enable_protobuf%': 1, |
97 | 97 |
98 # Disable these to not build components which can be externally provided. | 98 # Disable these to not build components which can be externally provided. |
99 'build_expat%': 1, | 99 'build_expat%': 1, |
100 'build_json%': 1, | 100 'build_json%': 1, |
101 'build_libjpeg%': 1, | 101 'build_libjpeg%': 1, |
| 102 'build_libsrtp%': 1, |
102 'build_libvpx%': 1, | 103 'build_libvpx%': 1, |
103 'build_libyuv%': 1, | 104 'build_libyuv%': 1, |
104 'build_openmax_dl%': 1, | 105 'build_openmax_dl%': 1, |
105 'build_opus%': 1, | 106 'build_opus%': 1, |
106 'build_protobuf%': 1, | 107 'build_protobuf%': 1, |
107 'build_ssl%': 1, | 108 'build_ssl%': 1, |
108 'build_usrsctp%': 1, | 109 'build_usrsctp%': 1, |
109 | 110 |
110 # Disable by default | 111 # Disable by default |
111 'have_dbus_glib%': 0, | 112 'have_dbus_glib%': 0, |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 # of a more specific macro. | 489 # of a more specific macro. |
489 'defines': [ | 490 'defines': [ |
490 'WEBRTC_POSIX', | 491 'WEBRTC_POSIX', |
491 ], | 492 ], |
492 }], | 493 }], |
493 ], | 494 ], |
494 }, | 495 }, |
495 }, # target_defaults | 496 }, # target_defaults |
496 } | 497 } |
497 | 498 |
OLD | NEW |