diff --git a/build/BUILD.gn b/build/BUILD.gn index f14174e4b8937854106b5097686296bfb482dbc7..7bb59ae6e10554758401798065e9cc165a62d2f7 100644 --- a/build/BUILD.gn +++ b/build/BUILD.gn @@ -97,6 +97,7 @@ build_ext_component("build_sysroot") { } action_foreach("strip") { + no_default_deps = true deps = [ ":build_sysroot" ] script = "//build/lite/run_shell_cmd.py" set_sources_assignment_filter([ "*.txt" ]) @@ -129,5 +130,8 @@ config("sysroot_flags") { group("build") { all_dependent_configs = [ ":sysroot_flags" ] - deps = [ ":build_sysroot" ] + deps = [ + ":build_sysroot", + ":strip", + ] }