• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1//
2// Copyright © 2017 ARM Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6/* remove go package, not needed by AOSP build.
7bootstrap_go_package {
8    name: "armnn_nn_driver",
9    pkgPath: "android-nn-driver",
10    deps: [
11        "blueprint",
12        "blueprint-pathtools",
13        "blueprint-proptools",
14        "soong",
15        "soong-android",
16        "soong-cc",
17    ],
18    srcs: [
19        "androidnn.go",
20    ],
21    pluginFor: [ "soong_build" ],
22}
23*/
24
25package {
26    default_applicable_licenses: ["external_android-nn-driver_license"],
27}
28
29// Added automatically by a large-scale-change that took the approach of
30// 'apply every license found to every target'. While this makes sure we respect
31// every license restriction, it may not be entirely correct.
32//
33// e.g. GPL in an MIT project might only apply to the contrib/ directory.
34//
35// Please consider splitting the single license below into multiple licenses,
36// taking care not to lose any license_kind information, and overriding the
37// default license using the 'licenses: [...]' property on targets as needed.
38//
39// For unused files, consider creating a 'fileGroup' with "//visibility:private"
40// to attach the license to, and including a comment whether the files may be
41// used in the current project.
42// See: http://go/android-license-faq
43license {
44    name: "external_android-nn-driver_license",
45    visibility: [":__subpackages__"],
46    license_kinds: [
47        "SPDX-license-identifier-Apache-2.0",
48        "SPDX-license-identifier-MIT",
49    ],
50    license_text: [
51        "LICENSE",
52    ],
53}
54
55subdirs = [
56    "armnn",
57]
58