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 = [ "//project/${project}:root" ] 13} 14 15# The root of the build for test artifacts. 16group("test_root") { 17 testonly = true 18 19 deps = [ "//project/${project}:test_root" ] 20} 21 22group("update_prebuilts") { 23 deps = [ "//third_party/linux" ] 24} 25 26group("default") { 27 testonly = true 28 deps = [ 29 ":root", 30 ":test_root", 31 ] 32} 33