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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 'enable_protobuf%': 1, | 84 'enable_protobuf%': 1, |
85 | 85 |
86 # Disable these to not build components which can be externally provided. | 86 # Disable these to not build components which can be externally provided. |
87 'build_expat%': 1, | 87 'build_expat%': 1, |
88 'build_json%': 1, | 88 'build_json%': 1, |
89 'build_libjpeg%': 1, | 89 'build_libjpeg%': 1, |
90 'build_libvpx%': 1, | 90 'build_libvpx%': 1, |
91 'build_libyuv%': 1, | 91 'build_libyuv%': 1, |
92 'build_openmax_dl%': 1, | 92 'build_openmax_dl%': 1, |
93 'build_opus%': 1, | 93 'build_opus%': 1, |
| 94 'build_protobuf%': 1, |
94 'build_ssl%': 1, | 95 'build_ssl%': 1, |
95 | 96 |
96 # Disable by default | 97 # Disable by default |
97 'have_dbus_glib%': 0, | 98 'have_dbus_glib%': 0, |
98 | 99 |
99 # Make it possible to provide custom locations for some libraries. | 100 # Make it possible to provide custom locations for some libraries. |
100 'libvpx_dir%': '<(DEPTH)/third_party/libvpx_new', | 101 'libvpx_dir%': '<(DEPTH)/third_party/libvpx_new', |
101 'libyuv_dir%': '<(DEPTH)/third_party/libyuv', | 102 'libyuv_dir%': '<(DEPTH)/third_party/libyuv', |
102 'opus_dir%': '<(opus_dir)', | 103 'opus_dir%': '<(opus_dir)', |
103 | 104 |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 # of a more specific macro. | 451 # of a more specific macro. |
451 'defines': [ | 452 'defines': [ |
452 'WEBRTC_POSIX', | 453 'WEBRTC_POSIX', |
453 ], | 454 ], |
454 }], | 455 }], |
455 ], | 456 ], |
456 }, | 457 }, |
457 }, # target_defaults | 458 }, # target_defaults |
458 } | 459 } |
459 | 460 |
OLD | NEW |