blob: 23a98721fae85902a022c8310333c2eeb82a677d [file] [log] [blame]
Dan Willemsen1e704462016-08-21 15:17:17 -07001// Copyright 2017 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15bootstrap_go_package {
16 name: "soong-ui-build",
17 pkgPath: "android/soong/ui/build",
18 deps: [
19 "soong-ui-logger",
Dan Willemsend9f6fa22016-08-21 15:17:17 -070020 "soong-ui-tracer",
Jeff Gastonefc1b412017-03-29 17:29:06 -070021 "soong-shared",
Dan Willemsen1e704462016-08-21 15:17:17 -070022 ],
23 srcs: [
24 "build.go",
Dan Willemsenf052f782017-05-18 15:29:04 -070025 "cleanbuild.go",
Dan Willemsen1e704462016-08-21 15:17:17 -070026 "config.go",
27 "context.go",
28 "environment.go",
Dan Willemsen269a8c72017-05-03 17:15:47 -070029 "exec.go",
Dan Willemsendb8457c2017-05-12 16:38:17 -070030 "java.go",
Dan Willemsen1e704462016-08-21 15:17:17 -070031 "kati.go",
32 "make.go",
33 "ninja.go",
Jeff Gaston3615fe82017-05-24 13:14:34 -070034 "proc_sync.go",
Dan Willemsen1e704462016-08-21 15:17:17 -070035 "signal.go",
36 "soong.go",
37 "util.go",
38 ],
39 testSrcs: [
Dan Willemsen9b587492017-07-10 22:13:00 -070040 "config_test.go",
Dan Willemsen1e704462016-08-21 15:17:17 -070041 "environment_test.go",
Dan Willemsen29f88272017-02-18 18:12:41 -080042 "util_test.go",
Jeff Gaston3615fe82017-05-24 13:14:34 -070043 "proc_sync_test.go",
Dan Willemsen1e704462016-08-21 15:17:17 -070044 ],
Dan Willemsen29f88272017-02-18 18:12:41 -080045 darwin: {
Dan Willemsen269a8c72017-05-03 17:15:47 -070046 srcs: [
47 "sandbox_darwin.go",
48 "util_darwin.go"
49 ],
Dan Willemsen29f88272017-02-18 18:12:41 -080050 },
51 linux: {
Dan Willemsen269a8c72017-05-03 17:15:47 -070052 srcs: [
53 "sandbox_linux.go",
54 "util_linux.go"
55 ],
Dan Willemsen29f88272017-02-18 18:12:41 -080056 },
Dan Willemsen1e704462016-08-21 15:17:17 -070057}