Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 1 | // 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 | |
| 15 | bootstrap_go_package { |
| 16 | name: "soong-ui-build", |
| 17 | pkgPath: "android/soong/ui/build", |
| 18 | deps: [ |
| 19 | "soong-ui-logger", |
Dan Willemsen | d9f6fa2 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 20 | "soong-ui-tracer", |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 21 | ], |
| 22 | srcs: [ |
| 23 | "build.go", |
| 24 | "config.go", |
| 25 | "context.go", |
| 26 | "environment.go", |
Dan Willemsen | 269a8c7 | 2017-05-03 17:15:47 -0700 | [diff] [blame^] | 27 | "exec.go", |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 28 | "kati.go", |
| 29 | "make.go", |
| 30 | "ninja.go", |
| 31 | "signal.go", |
| 32 | "soong.go", |
| 33 | "util.go", |
| 34 | ], |
| 35 | testSrcs: [ |
| 36 | "environment_test.go", |
Dan Willemsen | 29f8827 | 2017-02-18 18:12:41 -0800 | [diff] [blame] | 37 | "util_test.go", |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 38 | ], |
Dan Willemsen | 29f8827 | 2017-02-18 18:12:41 -0800 | [diff] [blame] | 39 | darwin: { |
Dan Willemsen | 269a8c7 | 2017-05-03 17:15:47 -0700 | [diff] [blame^] | 40 | srcs: [ |
| 41 | "sandbox_darwin.go", |
| 42 | "util_darwin.go" |
| 43 | ], |
Dan Willemsen | 29f8827 | 2017-02-18 18:12:41 -0800 | [diff] [blame] | 44 | }, |
| 45 | linux: { |
Dan Willemsen | 269a8c7 | 2017-05-03 17:15:47 -0700 | [diff] [blame^] | 46 | srcs: [ |
| 47 | "sandbox_linux.go", |
| 48 | "util_linux.go" |
| 49 | ], |
Dan Willemsen | 29f8827 | 2017-02-18 18:12:41 -0800 | [diff] [blame] | 50 | }, |
Dan Willemsen | 1e70446 | 2016-08-21 15:17:17 -0700 | [diff] [blame] | 51 | } |