blob: d85ae6fdfdc9ec73a4e1f3f233f351b02ab836e2 [file] [log] [blame]
telsoa015307bc12018-03-09 13:51:08 +00001//
2// Copyright © 2017 ARM Ltd. All rights reserved.
David Beck93e48982018-09-05 13:05:09 +01003// SPDX-License-Identifier: MIT
telsoa015307bc12018-03-09 13:51:08 +00004//
5
Kevin DuBoise6d328f2020-11-20 15:54:18 -08006/* remove go package, not needed by AOSP build.
Sadik Armagand6539c52019-05-22 18:00:30 +01007bootstrap_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}
Kevin DuBoise6d328f2020-11-20 15:54:18 -080023*/
Sadik Armagand6539c52019-05-22 18:00:30 +010024
Bob Badour4f9d9712021-03-02 00:44:18 -080025package {
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
telsoa015307bc12018-03-09 13:51:08 +000055subdirs = [
56 "armnn",
57]