@@ -560,9 +560,6 @@ class BuildScriptInvocation(object):
560
560
impl_args += ["--skip-build" ]
561
561
if not args .build_benchmarks :
562
562
impl_args += ["--skip-build-benchmarks" ]
563
- # Currently we do not build external benchmarks by default.
564
- if args .build_external_benchmarks :
565
- impl_args += ["--skip-build-external-benchmarks=0" ]
566
563
567
564
# Then add subproject install flags that either skip building them /or/
568
565
# if we are going to build them and install_all is set, we also install
@@ -596,26 +593,6 @@ class BuildScriptInvocation(object):
596
593
if args .build_swift_static_sdk_overlay :
597
594
impl_args += ["--build-swift-static-sdk-overlay" ]
598
595
599
- if not args .build_linux :
600
- impl_args += ["--skip-build-linux" ]
601
- if not args .build_freebsd :
602
- impl_args += ["--skip-build-freebsd" ]
603
- if not args .build_cygwin :
604
- impl_args += ["--skip-build-cygwin" ]
605
- if not args .build_osx :
606
- impl_args += ["--skip-build-osx" ]
607
- if not args .build_ios_device :
608
- impl_args += ["--skip-build-ios-device" ]
609
- if not args .build_ios_simulator :
610
- impl_args += ["--skip-build-ios-simulator" ]
611
- if not args .build_tvos_device :
612
- impl_args += ["--skip-build-tvos-device" ]
613
- if not args .build_tvos_simulator :
614
- impl_args += ["--skip-build-tvos-simulator" ]
615
- if not args .build_watchos_device :
616
- impl_args += ["--skip-build-watchos-device" ]
617
- if not args .build_watchos_simulator :
618
- impl_args += ["--skip-build-watchos-simulator" ]
619
596
if not args .build_android :
620
597
impl_args += ["--skip-build-android" ]
621
598
if not args .build_clang_tools_extra :
@@ -633,32 +610,6 @@ class BuildScriptInvocation(object):
633
610
"--skip-test-libdispatch" ,
634
611
"--skip-test-libicu" ,
635
612
]
636
- if not args .test_linux :
637
- impl_args += ["--skip-test-linux" ]
638
- if not args .test_freebsd :
639
- impl_args += ["--skip-test-freebsd" ]
640
- if not args .test_cygwin :
641
- impl_args += ["--skip-test-cygwin" ]
642
- if not args .test_osx :
643
- impl_args += ["--skip-test-osx" ]
644
- if not args .test_ios_host :
645
- impl_args += ["--skip-test-ios-host" ]
646
- if not args .test_ios_simulator :
647
- impl_args += ["--skip-test-ios-simulator" ]
648
- if not args .test_ios_32bit_simulator :
649
- impl_args += ["--skip-test-ios-32bit-simulator" ]
650
- if not args .test_tvos_host :
651
- impl_args += ["--skip-test-tvos-host" ]
652
- if not args .test_tvos_simulator :
653
- impl_args += ["--skip-test-tvos-simulator" ]
654
- if not args .test_watchos_host :
655
- impl_args += ["--skip-test-watchos-host" ]
656
- if not args .test_watchos_simulator :
657
- impl_args += ["--skip-test-watchos-simulator" ]
658
- if not args .test_android :
659
- impl_args += ["--skip-test-android" ]
660
- if not args .test_android_host :
661
- impl_args += ["--skip-test-android-host" ]
662
613
if args .build_runtime_with_host_compiler :
663
614
impl_args += ["--build-runtime-with-host-compiler" ]
664
615
if args .validation_test :
@@ -673,12 +624,6 @@ class BuildScriptInvocation(object):
673
624
impl_args += ["--only-executable-test" ]
674
625
if not args .benchmark :
675
626
impl_args += ["--skip-test-benchmarks" ]
676
- if not args .test_optimized :
677
- impl_args += ["--skip-test-optimized" ]
678
- if not args .test_optimize_for_size :
679
- impl_args += ["--skip-test-optimize-for-size" ]
680
- if not args .test_optimize_none_with_implicit_dynamic :
681
- impl_args += ["--skip-test-optimize-none-with-implicit-dynamic" ]
682
627
if args .build_libparser_only :
683
628
impl_args += ["--build-libparser-only" ]
684
629
if args .android :
0 commit comments