blob: 04770d048b01410b35bf1122e292fd567513b39b [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") {
Olivier Deprez306d7812023-02-02 09:51:10 +010012 deps = [ "//project/${project}:root" ]
Andrew Scullb401ba32018-11-09 10:30:54 +000013}
14
15# The root of the build for test artifacts.
16group("test_root") {
Andrew Scull04502e42018-09-03 14:54:52 +010017 testonly = true
18
Olivier Deprez306d7812023-02-02 09:51:10 +010019 deps = [ "//project/${project}:test_root" ]
Andrew Sculla158e912018-07-16 11:32:13 +010020}
Andrew Walbranbc342d42019-02-05 16:56:02 +000021
22group("update_prebuilts") {
Olivier Deprez306d7812023-02-02 09:51:10 +010023 deps = [ "//third_party/linux" ]
Andrew Walbranbc342d42019-02-05 16:56:02 +000024}
25
26group("default") {
27 testonly = true
28 deps = [
29 ":root",
30 ":test_root",
31 ]
32}