Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: webrtc/build/common.gypi

Issue 1587193006: Move talk/media to webrtc/media (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased to b647aca12a884a13c1728118586245399b55fa3d (#11493) Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_libvpx%': 1, 103 'build_libvpx%': 1,
104 'build_libyuv%': 1, 104 'build_libyuv%': 1,
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 110
110 # Disable by default 111 # Disable by default
111 'have_dbus_glib%': 0, 112 'have_dbus_glib%': 0,
112 113
113 # Make it possible to provide custom locations for some libraries. 114 # Make it possible to provide custom locations for some libraries.
114 'libvpx_dir%': '<(DEPTH)/third_party/libvpx_new', 115 'libvpx_dir%': '<(DEPTH)/third_party/libvpx_new',
115 'libyuv_dir%': '<(DEPTH)/third_party/libyuv', 116 'libyuv_dir%': '<(DEPTH)/third_party/libyuv',
116 'opus_dir%': '<(opus_dir)', 117 'opus_dir%': '<(opus_dir)',
117 118
118 # Use Java based audio layer as default for Android. 119 # Use Java based audio layer as default for Android.
119 # Change this setting to 1 to use Open SL audio instead. 120 # Change this setting to 1 to use Open SL audio instead.
120 # TODO(henrika): add support for Open SL ES. 121 # TODO(henrika): add support for Open SL ES.
121 'enable_android_opensl%': 0, 122 'enable_android_opensl%': 0,
122 123
124 # Disable this to skip building source requiring GTK.
125 'use_gtk%': 1,
126
123 # Link-Time Optimizations 127 # Link-Time Optimizations
124 # Executes code generation at link-time instead of compile-time 128 # Executes code generation at link-time instead of compile-time
125 # https://gcc.gnu.org/wiki/LinkTimeOptimization 129 # https://gcc.gnu.org/wiki/LinkTimeOptimization
126 'use_lto%': 0, 130 'use_lto%': 0,
127 131
128 # Defer ssl perference to that specified through sslconfig.h instead of 132 # Defer ssl perference to that specified through sslconfig.h instead of
129 # choosing openssl or nss directly. In practice, this can be used to 133 # choosing openssl or nss directly. In practice, this can be used to
130 # enable schannel on windows. 134 # enable schannel on windows.
131 'use_legacy_ssl_defaults%': 0, 135 'use_legacy_ssl_defaults%': 0,
132 136
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 # of a more specific macro. 478 # of a more specific macro.
475 'defines': [ 479 'defines': [
476 'WEBRTC_POSIX', 480 'WEBRTC_POSIX',
477 ], 481 ],
478 }], 482 }],
479 ], 483 ],
480 }, 484 },
481 }, # target_defaults 485 }, # target_defaults
482 } 486 }
483 487
OLDNEW
« no previous file with comments | « webrtc/api/objc/avfoundationvideocapturer.h ('k') | webrtc/build/sanitizers/lsan_suppressions_webrtc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698