Commit 8124daf7 authored by Sorin Jianu's avatar Sorin Jianu Committed by Chromium LUCI CQ

Define an "all" target for the chrome/updater.

It would be nice to have a group target that builds all the targets
in the chrome/updater so it is easier to build everything locally,
when needed.

Bug: 1167572

Change-Id: I4ee56b21cd4d461bf7bded3b8dcb5ffc2dce3c89
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2635110Reviewed-by: default avatarJoshua Pawlicki <waffles@chromium.org>
Commit-Queue: Sorin Jianu <sorin@chromium.org>
Cr-Commit-Position: refs/heads/master@{#844840}
parent 54a9f99e
...@@ -25,6 +25,17 @@ group("updater") { ...@@ -25,6 +25,17 @@ group("updater") {
} }
} }
group("all") {
testonly = true
if (is_win || is_mac) {
deps = [
":updater",
"//chrome/updater/test/test_app",
]
}
}
# Conditional build is needed, otherwise the analyze script on Linux # Conditional build is needed, otherwise the analyze script on Linux
# requires all targets and it is going to include the targets below. # requires all targets and it is going to include the targets below.
if (is_win || is_mac) { if (is_win || is_mac) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment