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

Unified Diff: webrtc/supplement.gypi

Issue 2509703002: Remove all references to GYP (Closed)
Patch Set: Rebased Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/stats/stats.gyp ('k') | webrtc/system_wrappers/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/supplement.gypi
diff --git a/webrtc/supplement.gypi b/webrtc/supplement.gypi
deleted file mode 100644
index f1974d73d83f1f92def606a467061ef0a4a9f93d..0000000000000000000000000000000000000000
--- a/webrtc/supplement.gypi
+++ /dev/null
@@ -1,60 +0,0 @@
-{
- 'variables': {
- 'variables': {
- 'webrtc_root%': '<(DEPTH)/webrtc',
- # Override the defaults in Chromium's build/common.gypi.
- # Needed for ARC and libc++.
- 'mac_sdk_min%': '10.11',
- 'mac_deployment_target%': '10.7',
- },
- 'webrtc_root%': '<(webrtc_root)',
- 'mac_deployment_target%': '<(mac_deployment_target)',
- 'use_sysroot%': '<(use_sysroot)',
- 'build_with_chromium': 0,
- 'conditions': [
- ['OS=="ios"', {
- # Set target_subarch for if not already set. This is needed because the
- # Chromium iOS toolchain relies on target_subarch being set.
- 'conditions': [
- ['target_arch=="arm" or target_arch=="ia32"', {
- 'target_subarch%': 'arm32',
- }],
- ['target_arch=="arm64" or target_arch=="x64"', {
- 'target_subarch%': 'arm64',
- }],
- ],
- }],
- ['OS=="android"', {
- # MJPEG capture is not used on Android. Disable to reduce
- # libjingle_peerconnection_so file size.
- 'libyuv_disable_jpeg%': 1,
- }],
- ],
- },
- 'target_defaults': {
- 'target_conditions': [
- ['_target_name=="sanitizer_options"', {
- 'conditions': [
- ['lsan==1', {
- # Replace Chromium's LSan suppressions with our own for WebRTC.
- 'sources/': [
- ['exclude', 'lsan_suppressions.cc'],
- ],
- 'sources': [
- '<(webrtc_root)/build/sanitizers/lsan_suppressions_webrtc.cc',
- ],
- }],
- ['tsan==1', {
- # Replace Chromium's TSan v2 suppressions with our own for WebRTC.
- 'sources/': [
- ['exclude', 'tsan_suppressions.cc'],
- ],
- 'sources': [
- '<(webrtc_root)/build/sanitizers/tsan_suppressions_webrtc.cc',
- ],
- }],
- ],
- }],
- ],
- },
-}
« no previous file with comments | « webrtc/stats/stats.gyp ('k') | webrtc/system_wrappers/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698