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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 'build_ssl%': 1, | 95 'build_ssl%': 1, |
96 'build_vp9%': 1, | 96 'build_vp9%': 1, |
97 | 97 |
98 # Disable by default | 98 # Disable by default |
99 'have_dbus_glib%': 0, | 99 'have_dbus_glib%': 0, |
100 | 100 |
101 # Enable to use the Mozilla internal settings. | 101 # Enable to use the Mozilla internal settings. |
102 'build_with_mozilla%': 0, | 102 'build_with_mozilla%': 0, |
103 | 103 |
104 # Make it possible to provide custom locations for some libraries. | 104 # Make it possible to provide custom locations for some libraries. |
105 'libvpx_dir%': '<(DEPTH)/third_party/libvpx', | 105 'libvpx_dir%': '<(DEPTH)/third_party/libvpx_new', |
106 'libyuv_dir%': '<(DEPTH)/third_party/libyuv', | 106 'libyuv_dir%': '<(DEPTH)/third_party/libyuv', |
107 'opus_dir%': '<(opus_dir)', | 107 'opus_dir%': '<(opus_dir)', |
108 | 108 |
109 # Use Java based audio layer as default for Android. | 109 # Use Java based audio layer as default for Android. |
110 # Change this setting to 1 to use Open SL audio instead. | 110 # Change this setting to 1 to use Open SL audio instead. |
111 # TODO(henrika): add support for Open SL ES. | 111 # TODO(henrika): add support for Open SL ES. |
112 'enable_android_opensl%': 0, | 112 'enable_android_opensl%': 0, |
113 | 113 |
114 # Link-Time Optimizations | 114 # Link-Time Optimizations |
115 # Executes code generation at link-time instead of compile-time | 115 # Executes code generation at link-time instead of compile-time |
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 # of a more specific macro. | 446 # of a more specific macro. |
447 'defines': [ | 447 'defines': [ |
448 'WEBRTC_POSIX', | 448 'WEBRTC_POSIX', |
449 ], | 449 ], |
450 }], | 450 }], |
451 ], | 451 ], |
452 }, | 452 }, |
453 }, # target_defaults | 453 }, # target_defaults |
454 } | 454 } |
455 | 455 |
OLD | NEW |