| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 # Build sources requiring GTK. NOTICE: This is not present in Chrome OS | 174 # Build sources requiring GTK. NOTICE: This is not present in Chrome OS |
| 175 # build environments, even if available for Chromium builds. | 175 # build environments, even if available for Chromium builds. |
| 176 'use_gtk%': 0, | 176 'use_gtk%': 0, |
| 177 # Exclude pulse audio on Chromium since its prerequisites don't require | 177 # Exclude pulse audio on Chromium since its prerequisites don't require |
| 178 # pulse audio. | 178 # pulse audio. |
| 179 'include_pulse_audio%': 0, | 179 'include_pulse_audio%': 0, |
| 180 | 180 |
| 181 # Exclude internal ADM since Chromium uses its own IO handling. | 181 # Exclude internal ADM since Chromium uses its own IO handling. |
| 182 'include_internal_audio_device%': 0, | 182 'include_internal_audio_device%': 0, |
| 183 | 183 |
| 184 # Exclude device management code since Chromium has its own. |
| 185 'include_internal_device_management%': 0, |
| 186 |
| 184 # Remove tests for Chromium to avoid slowing down GYP generation. | 187 # Remove tests for Chromium to avoid slowing down GYP generation. |
| 185 'include_tests%': 0, | 188 'include_tests%': 0, |
| 186 'restrict_webrtc_logging%': 1, | 189 'restrict_webrtc_logging%': 1, |
| 187 }, { # Settings for the standalone (not-in-Chromium) build. | 190 }, { # Settings for the standalone (not-in-Chromium) build. |
| 188 'use_gtk%': 1, | 191 'use_gtk%': 1, |
| 189 # TODO(andrew): For now, disable the Chrome plugins, which causes a | 192 # TODO(andrew): For now, disable the Chrome plugins, which causes a |
| 190 # flood of chromium-style warnings. Investigate enabling them: | 193 # flood of chromium-style warnings. Investigate enabling them: |
| 191 # http://code.google.com/p/webrtc/issues/detail?id=163 | 194 # http://code.google.com/p/webrtc/issues/detail?id=163 |
| 192 'clang_use_chrome_plugins%': 0, | 195 'clang_use_chrome_plugins%': 0, |
| 193 | 196 |
| 194 'include_pulse_audio%': 1, | 197 'include_pulse_audio%': 1, |
| 195 'include_internal_audio_device%': 1, | 198 'include_internal_audio_device%': 1, |
| 199 'include_internal_device_management%': 1, |
| 196 'include_tests%': 1, | 200 'include_tests%': 1, |
| 197 'restrict_webrtc_logging%': 0, | 201 'restrict_webrtc_logging%': 0, |
| 198 }], | 202 }], |
| 199 ['OS=="ios"', { | 203 ['OS=="ios"', { |
| 200 'build_libjpeg%': 0, | 204 'build_libjpeg%': 0, |
| 201 }], | 205 }], |
| 202 ['target_arch=="arm" or target_arch=="arm64"', { | 206 ['target_arch=="arm" or target_arch=="arm64"', { |
| 203 'prefer_fixed_point%': 1, | 207 'prefer_fixed_point%': 1, |
| 204 }], | 208 }], |
| 205 ['(target_arch=="arm" and (arm_neon==1 or arm_neon_optional==1)) or target
_arch=="arm64"', { | 209 ['(target_arch=="arm" and (arm_neon==1 or arm_neon_optional==1)) or target
_arch=="arm64"', { |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 # of a more specific macro. | 493 # of a more specific macro. |
| 490 'defines': [ | 494 'defines': [ |
| 491 'WEBRTC_POSIX', | 495 'WEBRTC_POSIX', |
| 492 ], | 496 ], |
| 493 }], | 497 }], |
| 494 ], | 498 ], |
| 495 }, | 499 }, |
| 496 }, # target_defaults | 500 }, # target_defaults |
| 497 } | 501 } |
| 498 | 502 |
| OLD | NEW |