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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 'build_openmax_dl%': 1, | 105 'build_openmax_dl%': 1, |
106 'build_opus%': 1, | 106 'build_opus%': 1, |
107 'build_protobuf%': 1, | 107 'build_protobuf%': 1, |
108 'build_ssl%': 1, | 108 'build_ssl%': 1, |
109 'build_usrsctp%': 1, | 109 'build_usrsctp%': 1, |
110 | 110 |
111 # Disable by default | 111 # Disable by default |
112 'have_dbus_glib%': 0, | 112 'have_dbus_glib%': 0, |
113 | 113 |
114 # Make it possible to provide custom locations for some libraries. | 114 # Make it possible to provide custom locations for some libraries. |
115 'libvpx_dir%': '<(DEPTH)/third_party/libvpx_new', | 115 'libvpx_dir%': '<(DEPTH)/third_party/libvpx', |
116 'libyuv_dir%': '<(DEPTH)/third_party/libyuv', | 116 'libyuv_dir%': '<(DEPTH)/third_party/libyuv', |
117 'opus_dir%': '<(opus_dir)', | 117 'opus_dir%': '<(opus_dir)', |
118 | 118 |
119 # Use Java based audio layer as default for Android. | 119 # Use Java based audio layer as default for Android. |
120 # Change this setting to 1 to use Open SL audio instead. | 120 # Change this setting to 1 to use Open SL audio instead. |
121 # TODO(henrika): add support for Open SL ES. | 121 # TODO(henrika): add support for Open SL ES. |
122 'enable_android_opensl%': 0, | 122 'enable_android_opensl%': 0, |
123 | 123 |
124 # Link-Time Optimizations | 124 # Link-Time Optimizations |
125 # Executes code generation at link-time instead of compile-time | 125 # Executes code generation at link-time instead of compile-time |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
492 # For access to standard POSIXish features, use WEBRTC_POSIX instead | 492 # For access to standard POSIXish features, use WEBRTC_POSIX instead |
493 # of a more specific macro. | 493 # of a more specific macro. |
494 'defines': [ | 494 'defines': [ |
495 'WEBRTC_POSIX', | 495 'WEBRTC_POSIX', |
496 ], | 496 ], |
497 }], | 497 }], |
498 ], | 498 ], |
499 }, | 499 }, |
500 }, # target_defaults | 500 }, # target_defaults |
501 } | 501 } |
OLD | NEW |