Skip to content

Commit 43e0866

Browse files
authored
Fixup: Address is_debug=false issue for exclude_chrome_build (#8028)
This patch resolves issues in the previous patch when building with is_debug=false and exclude_chrome_build=true for lightweight Linux builds.
1 parent 75d506b commit 43e0866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ group("gn_all") {
631631
deps += [ "//chrome/test:chrome_app_unittests" ]
632632
}
633633

634-
if (!is_debug && !is_component_build && !is_castos) {
634+
if (!is_debug && !is_component_build && !exclude_chrome_build) {
635635
deps += [ "//chrome/tools/service_discovery_sniffer" ]
636636
}
637637
}

0 commit comments

Comments
 (0)