1# Copyright 2018 The Hafnium Authors.
2#
3# Use of this source code is governed by a BSD-style
4# license that can be found in the LICENSE file or at
5# https://opensource.org/licenses/BSD-3-Clause.
6
7# The root of the build redirects to a project build file so each project can
8# select the artifacts it needs to build.
9
10# The root of the build.
11group("root") {
12  deps = [
13    "//project/${project}:root",
14  ]
15}
16
17# The root of the build for test artifacts.
18group("test_root") {
19  testonly = true
20
21  deps = [
22    "//project/${project}:test_root",
23  ]
24}
25
26group("update_prebuilts") {
27  deps = [
28    "//third_party/linux",
29  ]
30}
31
32group("default") {
33  testonly = true
34  deps = [
35    ":root",
36    ":test_root",
37  ]
38}
39