blob: 1cb29954dfd3d1a823aa52ea413fa6fa09772a3b [file] [log] [blame]
Andrew Walbran692b3252019-03-07 15:51:31 +00001# Copyright 2018 The Hafnium Authors.
Andrew Scull18834872018-10-12 11:48:09 +01002#
Andrew Walbrane959ec12020-06-17 15:01:09 +01003# 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.
Andrew Scull18834872018-10-12 11:48:09 +01006
Andrew Scullb401ba32018-11-09 10:30:54 +00007# 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") {
Andrew Scull04502e42018-09-03 14:54:52 +010019 testonly = true
20
21 deps = [
Andrew Scullb401ba32018-11-09 10:30:54 +000022 "//project/${project}:test_root",
Andrew Scull04502e42018-09-03 14:54:52 +010023 ]
Andrew Sculla158e912018-07-16 11:32:13 +010024}
Andrew Walbranbc342d42019-02-05 16:56:02 +000025
26group("update_prebuilts") {
27 deps = [
David Brazdil33cc5c02019-12-10 10:44:14 +000028 "//third_party/linux",
Andrew Walbranbc342d42019-02-05 16:56:02 +000029 ]
30}
31
32group("default") {
33 testonly = true
34 deps = [
35 ":root",
36 ":test_root",
37 ]
38}