Home | History | Annotate | Download | only in build
      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",
     20         "soong-ui-tracer",
     21         "soong-shared",
     22         "soong-finder",
     23         "blueprint-microfactory",
     24     ],
     25     srcs: [
     26         "build.go",
     27         "cleanbuild.go",
     28         "config.go",
     29         "context.go",
     30         "dumpvars.go",
     31         "environment.go",
     32         "exec.go",
     33         "finder.go",
     34         "kati.go",
     35         "ninja.go",
     36         "proc_sync.go",
     37         "signal.go",
     38         "soong.go",
     39         "test_build.go",
     40         "util.go",
     41     ],
     42     testSrcs: [
     43         "config_test.go",
     44         "environment_test.go",
     45         "util_test.go",
     46         "proc_sync_test.go",
     47     ],
     48     darwin: {
     49         srcs: [
     50             "sandbox_darwin.go",
     51             "util_darwin.go"
     52         ],
     53     },
     54     linux: {
     55         srcs: [
     56             "sandbox_linux.go",
     57             "util_linux.go"
     58         ],
     59     },
     60 }
     61