@@ -558,9 +558,6 @@ class BuildScriptInvocation(object):
558558 impl_args += ["--skip-build" ]
559559 if not args .build_benchmarks :
560560 impl_args += ["--skip-build-benchmarks" ]
561- # Currently we do not build external benchmarks by default.
562- if args .build_external_benchmarks :
563- impl_args += ["--skip-build-external-benchmarks=0" ]
564561
565562 # Then add subproject install flags that either skip building them /or/
566563 # if we are going to build them and install_all is set, we also install
@@ -594,26 +591,6 @@ class BuildScriptInvocation(object):
594591 if args .build_swift_static_sdk_overlay :
595592 impl_args += ["--build-swift-static-sdk-overlay" ]
596593
597- if not args .build_linux :
598- impl_args += ["--skip-build-linux" ]
599- if not args .build_freebsd :
600- impl_args += ["--skip-build-freebsd" ]
601- if not args .build_cygwin :
602- impl_args += ["--skip-build-cygwin" ]
603- if not args .build_osx :
604- impl_args += ["--skip-build-osx" ]
605- if not args .build_ios_device :
606- impl_args += ["--skip-build-ios-device" ]
607- if not args .build_ios_simulator :
608- impl_args += ["--skip-build-ios-simulator" ]
609- if not args .build_tvos_device :
610- impl_args += ["--skip-build-tvos-device" ]
611- if not args .build_tvos_simulator :
612- impl_args += ["--skip-build-tvos-simulator" ]
613- if not args .build_watchos_device :
614- impl_args += ["--skip-build-watchos-device" ]
615- if not args .build_watchos_simulator :
616- impl_args += ["--skip-build-watchos-simulator" ]
617594 if not args .build_android :
618595 impl_args += ["--skip-build-android" ]
619596 if not args .build_clang_tools_extra :
@@ -631,32 +608,6 @@ class BuildScriptInvocation(object):
631608 "--skip-test-libdispatch" ,
632609 "--skip-test-libicu" ,
633610 ]
634- if not args .test_linux :
635- impl_args += ["--skip-test-linux" ]
636- if not args .test_freebsd :
637- impl_args += ["--skip-test-freebsd" ]
638- if not args .test_cygwin :
639- impl_args += ["--skip-test-cygwin" ]
640- if not args .test_osx :
641- impl_args += ["--skip-test-osx" ]
642- if not args .test_ios_host :
643- impl_args += ["--skip-test-ios-host" ]
644- if not args .test_ios_simulator :
645- impl_args += ["--skip-test-ios-simulator" ]
646- if not args .test_ios_32bit_simulator :
647- impl_args += ["--skip-test-ios-32bit-simulator" ]
648- if not args .test_tvos_host :
649- impl_args += ["--skip-test-tvos-host" ]
650- if not args .test_tvos_simulator :
651- impl_args += ["--skip-test-tvos-simulator" ]
652- if not args .test_watchos_host :
653- impl_args += ["--skip-test-watchos-host" ]
654- if not args .test_watchos_simulator :
655- impl_args += ["--skip-test-watchos-simulator" ]
656- if not args .test_android :
657- impl_args += ["--skip-test-android" ]
658- if not args .test_android_host :
659- impl_args += ["--skip-test-android-host" ]
660611 if args .build_runtime_with_host_compiler :
661612 impl_args += ["--build-runtime-with-host-compiler" ]
662613 if args .validation_test :
@@ -671,12 +622,6 @@ class BuildScriptInvocation(object):
671622 impl_args += ["--only-executable-test" ]
672623 if not args .benchmark :
673624 impl_args += ["--skip-test-benchmarks" ]
674- if not args .test_optimized :
675- impl_args += ["--skip-test-optimized" ]
676- if not args .test_optimize_for_size :
677- impl_args += ["--skip-test-optimize-for-size" ]
678- if not args .test_optimize_none_with_implicit_dynamic :
679- impl_args += ["--skip-test-optimize-none-with-implicit-dynamic" ]
680625 if args .build_libparser_only :
681626 impl_args += ["--build-libparser-only" ]
682627 if args .android :
0 commit comments