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 | 95 |
96 # Enables the use of protocol buffers for debug recordings. | 96 # Enables the use of protocol buffers for debug recordings. |
97 'enable_protobuf%': 1, | 97 'enable_protobuf%': 1, |
98 | 98 |
99 # Disable these to not build components which can be externally provided. | 99 # Disable these to not build components which can be externally provided. |
100 'build_expat%': 1, | 100 'build_expat%': 1, |
101 'build_json%': 1, | 101 'build_json%': 1, |
102 'build_libjpeg%': 1, | 102 'build_libjpeg%': 1, |
103 'build_libsrtp%': 1, | 103 'build_libsrtp%': 1, |
104 'build_libvpx%': 1, | 104 'build_libvpx%': 1, |
| 105 'libvpx_build_vp9%': 1, |
105 'build_libyuv%': 1, | 106 'build_libyuv%': 1, |
106 'build_openmax_dl%': 1, | 107 'build_openmax_dl%': 1, |
107 'build_opus%': 1, | 108 'build_opus%': 1, |
108 'build_protobuf%': 1, | 109 'build_protobuf%': 1, |
109 'build_ssl%': 1, | 110 'build_ssl%': 1, |
110 'build_usrsctp%': 1, | 111 'build_usrsctp%': 1, |
111 | 112 |
112 # Disable by default | 113 # Disable by default |
113 'have_dbus_glib%': 0, | 114 'have_dbus_glib%': 0, |
114 | 115 |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 '-fno-builtin-sinf', | 441 '-fno-builtin-sinf', |
441 ], | 442 ], |
442 }], | 443 }], |
443 ], | 444 ], |
444 }], | 445 }], |
445 ['include_internal_audio_device==1', { | 446 ['include_internal_audio_device==1', { |
446 'defines': [ | 447 'defines': [ |
447 'WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE', | 448 'WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE', |
448 ], | 449 ], |
449 }], | 450 }], |
| 451 ['libvpx_build_vp9==0', { |
| 452 'defines': [ |
| 453 'RTC_DISABLE_VP9', |
| 454 ], |
| 455 }], |
450 ], # conditions | 456 ], # conditions |
451 'direct_dependent_settings': { | 457 'direct_dependent_settings': { |
452 'conditions': [ | 458 'conditions': [ |
453 ['build_with_mozilla==1', { | 459 ['build_with_mozilla==1', { |
454 'defines': [ | 460 'defines': [ |
455 # Changes settings for Mozilla build. | 461 # Changes settings for Mozilla build. |
456 'WEBRTC_MOZILLA_BUILD', | 462 'WEBRTC_MOZILLA_BUILD', |
457 ], | 463 ], |
458 }], | 464 }], |
459 ['build_with_chromium==1', { | 465 ['build_with_chromium==1', { |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 # For access to standard POSIXish features, use WEBRTC_POSIX instead | 509 # For access to standard POSIXish features, use WEBRTC_POSIX instead |
504 # of a more specific macro. | 510 # of a more specific macro. |
505 'defines': [ | 511 'defines': [ |
506 'WEBRTC_POSIX', | 512 'WEBRTC_POSIX', |
507 ], | 513 ], |
508 }], | 514 }], |
509 ], | 515 ], |
510 }, | 516 }, |
511 }, # target_defaults | 517 }, # target_defaults |
512 } | 518 } |
OLD | NEW |