| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 # Disable these to not build components which can be externally provided. | 97 # Disable these to not build components which can be externally provided. |
| 98 'build_expat%': 1, | 98 'build_expat%': 1, |
| 99 'build_json%': 1, | 99 'build_json%': 1, |
| 100 'build_libjpeg%': 1, | 100 'build_libjpeg%': 1, |
| 101 'build_libvpx%': 1, | 101 'build_libvpx%': 1, |
| 102 'build_libyuv%': 1, | 102 'build_libyuv%': 1, |
| 103 'build_openmax_dl%': 1, | 103 'build_openmax_dl%': 1, |
| 104 'build_opus%': 1, | 104 'build_opus%': 1, |
| 105 'build_protobuf%': 1, | 105 'build_protobuf%': 1, |
| 106 'build_ssl%': 1, | 106 'build_ssl%': 1, |
| 107 'build_usrsctp%': 1, |
| 107 | 108 |
| 108 # Disable by default | 109 # Disable by default |
| 109 'have_dbus_glib%': 0, | 110 'have_dbus_glib%': 0, |
| 110 | 111 |
| 111 # Make it possible to provide custom locations for some libraries. | 112 # Make it possible to provide custom locations for some libraries. |
| 112 'libvpx_dir%': '<(DEPTH)/third_party/libvpx_new', | 113 'libvpx_dir%': '<(DEPTH)/third_party/libvpx_new', |
| 113 'libyuv_dir%': '<(DEPTH)/third_party/libyuv', | 114 'libyuv_dir%': '<(DEPTH)/third_party/libyuv', |
| 114 'opus_dir%': '<(opus_dir)', | 115 'opus_dir%': '<(opus_dir)', |
| 115 | 116 |
| 116 # Use Java based audio layer as default for Android. | 117 # Use Java based audio layer as default for Android. |
| 117 # Change this setting to 1 to use Open SL audio instead. | 118 # Change this setting to 1 to use Open SL audio instead. |
| 118 # TODO(henrika): add support for Open SL ES. | 119 # TODO(henrika): add support for Open SL ES. |
| 119 'enable_android_opensl%': 0, | 120 'enable_android_opensl%': 0, |
| 120 | 121 |
| 122 # Disable this to skip building source requiring GTK. |
| 123 'use_gtk%': 1, |
| 124 |
| 121 # Link-Time Optimizations | 125 # Link-Time Optimizations |
| 122 # Executes code generation at link-time instead of compile-time | 126 # Executes code generation at link-time instead of compile-time |
| 123 # https://gcc.gnu.org/wiki/LinkTimeOptimization | 127 # https://gcc.gnu.org/wiki/LinkTimeOptimization |
| 124 'use_lto%': 0, | 128 'use_lto%': 0, |
| 125 | 129 |
| 126 # Defer ssl perference to that specified through sslconfig.h instead of | 130 # Defer ssl perference to that specified through sslconfig.h instead of |
| 127 # choosing openssl or nss directly. In practice, this can be used to | 131 # choosing openssl or nss directly. In practice, this can be used to |
| 128 # enable schannel on windows. | 132 # enable schannel on windows. |
| 129 'use_legacy_ssl_defaults%': 0, | 133 'use_legacy_ssl_defaults%': 0, |
| 130 | 134 |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 # of a more specific macro. | 466 # of a more specific macro. |
| 463 'defines': [ | 467 'defines': [ |
| 464 'WEBRTC_POSIX', | 468 'WEBRTC_POSIX', |
| 465 ], | 469 ], |
| 466 }], | 470 }], |
| 467 ], | 471 ], |
| 468 }, | 472 }, |
| 469 }, # target_defaults | 473 }, # target_defaults |
| 470 } | 474 } |
| 471 | 475 |
| OLD | NEW |