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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 | 89 |
90 # Disable these to not build components which can be externally provided. | 90 # Disable these to not build components which can be externally provided. |
91 'build_expat%': 1, | 91 'build_expat%': 1, |
92 'build_json%': 1, | 92 'build_json%': 1, |
93 'build_libjpeg%': 1, | 93 'build_libjpeg%': 1, |
94 'build_libvpx%': 1, | 94 'build_libvpx%': 1, |
95 'build_libyuv%': 1, | 95 'build_libyuv%': 1, |
96 'build_openmax_dl%': 1, | 96 'build_openmax_dl%': 1, |
97 'build_opus%': 1, | 97 'build_opus%': 1, |
98 'build_ssl%': 1, | 98 'build_ssl%': 1, |
99 'build_vp9%': 1, | |
100 | 99 |
101 # Disable by default | 100 # Disable by default |
102 'have_dbus_glib%': 0, | 101 'have_dbus_glib%': 0, |
103 | 102 |
104 # Make it possible to provide custom locations for some libraries. | 103 # Make it possible to provide custom locations for some libraries. |
105 'libvpx_dir%': '<(DEPTH)/third_party/libvpx_new', | 104 'libvpx_dir%': '<(DEPTH)/third_party/libvpx_new', |
106 'libyuv_dir%': '<(DEPTH)/third_party/libyuv', | 105 'libyuv_dir%': '<(DEPTH)/third_party/libyuv', |
107 'opus_dir%': '<(opus_dir)', | 106 'opus_dir%': '<(opus_dir)', |
108 | 107 |
109 # Use Java based audio layer as default for Android. | 108 # Use Java based audio layer as default for Android. |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 # of a more specific macro. | 445 # of a more specific macro. |
447 'defines': [ | 446 'defines': [ |
448 'WEBRTC_POSIX', | 447 'WEBRTC_POSIX', |
449 ], | 448 ], |
450 }], | 449 }], |
451 ], | 450 ], |
452 }, | 451 }, |
453 }, # target_defaults | 452 }, # target_defaults |
454 } | 453 } |
455 | 454 |
OLD | NEW |