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

Side by Side Diff: webrtc/build/mb_config.pyl

Issue 2314473002: MB: Disable more parts of the GYP build. (Closed)
Patch Set: Rebased Created 4 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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 # FOR DETAILS ON THIS FILE SEE THE MAIN COPY IN //tools/mb/mb_config.pyl. 9 # FOR DETAILS ON THIS FILE SEE THE MAIN COPY IN //tools/mb/mb_config.pyl.
10 # This is configuration for standalone WebRTC bots. It is used to keep the bot 10 # This is configuration for standalone WebRTC bots. It is used to keep the bot
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 'goma': { 425 'goma': {
426 # The MB code will properly escape goma_dir if necessary in the GYP 426 # The MB code will properly escape goma_dir if necessary in the GYP
427 # code path; the GN code path needs no escaping. 427 # code path; the GN code path needs no escaping.
428 'gn_args': 'use_goma=true', 428 'gn_args': 'use_goma=true',
429 'gyp_defines': 'use_goma=1', 429 'gyp_defines': 'use_goma=1',
430 }, 430 },
431 431
432 'gyp': {'type': 'gyp'}, 432 'gyp': {'type': 'gyp'},
433 433
434 'gyp_limited_support_build': { 434 'gyp_limited_support_build': {
435 'gyp_defines': 'include_examples=0 include_tests=0' 435 'gyp_defines': (
436 'include_examples=0 include_tests=0 include_ilbc=0 '
437 'build_expat=0 build_json=0 build_libevent=0 build_libjpeg=0 '
438 'build_libsrtp=0 build_libvpx=0 build_libyuv=0 build_openmax_dl=0 '
439 'build_opus=0 build_protobuf=0 build_ssl=0 build_usrsctp=0 '
440 'enable_video=0 linux_use_bundled_binutils=0 rtc_use_openmax_dl=1 '
441 'use_openssl=1 use_x11=0 use_gtk=0'),
436 }, 442 },
437 443
438 'ios': { 444 'ios': {
439 'gn_args': 'target_os="ios"', 445 'gn_args': 'target_os="ios"',
440 'gyp_defines': 'OS=ios', 446 'gyp_defines': 'OS=ios',
441 }, 447 },
442 448
443 'lsan': { 449 'lsan': {
444 'gn_args': 'is_lsan=true', 450 'gn_args': 'is_lsan=true',
445 'gyp_defines': 'lsan=1', 451 'gyp_defines': 'lsan=1',
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 'gn_args': 'target_cpu="x64"', 537 'gn_args': 'target_cpu="x64"',
532 'gyp_defines': 'target_arch=x64', 538 'gyp_defines': 'target_arch=x64',
533 }, 539 },
534 540
535 'x86': { 541 'x86': {
536 'gn_args': 'target_cpu="x86"', 542 'gn_args': 'target_cpu="x86"',
537 'gyp_defines': 'target_arch=ia32', 543 'gyp_defines': 'target_arch=ia32',
538 }, 544 },
539 }, 545 },
540 } 546 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698