Chromium Code Reviews| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 202 ['build_with_chromium==1', { | 202 ['build_with_chromium==1', { |
| 203 # Build sources requiring GTK. NOTICE: This is not present in Chrome OS | 203 # Build sources requiring GTK. NOTICE: This is not present in Chrome OS |
| 204 # build environments, even if available for Chromium builds. | 204 # build environments, even if available for Chromium builds. |
| 205 'use_gtk%': 0, | 205 'use_gtk%': 0, |
| 206 # Exclude pulse audio on Chromium since its prerequisites don't require | 206 # Exclude pulse audio on Chromium since its prerequisites don't require |
| 207 # pulse audio. | 207 # pulse audio. |
| 208 'include_pulse_audio%': 0, | 208 'include_pulse_audio%': 0, |
| 209 | 209 |
| 210 # Exclude internal ADM since Chromium uses its own IO handling. | 210 # Exclude internal ADM since Chromium uses its own IO handling. |
| 211 'include_internal_audio_device%': 0, | 211 'include_internal_audio_device%': 0, |
| 212 'use_dummy_audio_file_devices%': 0, | |
|
kjellander_webrtc
2016/08/16 06:20:05
If the default value is going to be the same for C
noahric
2016/08/16 21:02:37
Done. Also added an explanatory comment.
| |
| 212 | 213 |
| 213 # Remove tests for Chromium to avoid slowing down GYP generation. | 214 # Remove tests for Chromium to avoid slowing down GYP generation. |
| 214 'include_tests%': 0, | 215 'include_tests%': 0, |
| 215 'restrict_webrtc_logging%': 1, | 216 'restrict_webrtc_logging%': 1, |
| 216 }, { # Settings for the standalone (not-in-Chromium) build. | 217 }, { # Settings for the standalone (not-in-Chromium) build. |
| 217 'use_gtk%': 1, | 218 'use_gtk%': 1, |
| 218 # TODO(andrew): For now, disable the Chrome plugins, which causes a | 219 # TODO(andrew): For now, disable the Chrome plugins, which causes a |
| 219 # flood of chromium-style warnings. Investigate enabling them: | 220 # flood of chromium-style warnings. Investigate enabling them: |
| 220 # http://code.google.com/p/webrtc/issues/detail?id=163 | 221 # http://code.google.com/p/webrtc/issues/detail?id=163 |
| 221 'clang_use_chrome_plugins%': 0, | 222 'clang_use_chrome_plugins%': 0, |
| 222 | 223 |
| 223 'include_pulse_audio%': 1, | 224 'include_pulse_audio%': 1, |
| 224 'include_internal_audio_device%': 1, | 225 'include_internal_audio_device%': 1, |
| 226 'use_dummy_audio_file_devices%': 0, | |
| 225 'include_tests%': 1, | 227 'include_tests%': 1, |
| 226 'restrict_webrtc_logging%': 0, | 228 'restrict_webrtc_logging%': 0, |
| 227 }], | 229 }], |
| 228 ['target_arch=="arm" or target_arch=="arm64" or target_arch=="mipsel"', { | 230 ['target_arch=="arm" or target_arch=="arm64" or target_arch=="mipsel"', { |
| 229 'prefer_fixed_point%': 1, | 231 'prefer_fixed_point%': 1, |
| 230 }], | 232 }], |
| 231 ['(target_arch=="arm" and arm_neon==1) or target_arch=="arm64"', { | 233 ['(target_arch=="arm" and arm_neon==1) or target_arch=="arm64"', { |
| 232 'build_with_neon%': 1, | 234 'build_with_neon%': 1, |
| 233 }], | 235 }], |
| 234 ['OS!="ios" and (target_arch!="arm" or arm_version>=7) and target_arch!="m ips64el"', { | 236 ['OS!="ios" and (target_arch!="arm" or arm_version>=7) and target_arch!="m ips64el"', { |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 598 }], | 600 }], |
| 599 ['OS=="freebsd"', { | 601 ['OS=="freebsd"', { |
| 600 'defines': [ | 602 'defines': [ |
| 601 'FREEBSD', | 603 'FREEBSD', |
| 602 ], | 604 ], |
| 603 }], | 605 }], |
| 604 ], | 606 ], |
| 605 }, | 607 }, |
| 606 }, # target_defaults | 608 }, # target_defaults |
| 607 } | 609 } |
| OLD | NEW |