blob: 34dbbc304b8716c3b364548610aca101877bb883 [file] [log] [blame]
Jesse Hall25eb2f12019-04-12 13:45:34 -07001// Copyright 2019 The Android Open Source Project
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// This module defines which headers are included in the NDK sysroot during
16// the NDK build process.
Bob Badour46e78cf2021-02-12 21:18:48 -080017package {
18 default_applicable_licenses: ["external_vulkan-headers_license"],
19}
20
21// Added automatically by a large-scale-change that took the approach of
22// 'apply every license found to every target'. While this makes sure we respect
23// every license restriction, it may not be entirely correct.
24//
25// e.g. GPL in an MIT project might only apply to the contrib/ directory.
26//
27// Please consider splitting the single license below into multiple licenses,
28// taking care not to lose any license_kind information, and overriding the
29// default license using the 'licenses: [...]' property on targets as needed.
30//
31// For unused files, consider creating a 'fileGroup' with "//visibility:private"
32// to attach the license to, and including a comment whether the files may be
33// used in the current project.
34// See: http://go/android-license-faq
35license {
36 name: "external_vulkan-headers_license",
37 visibility: [":__subpackages__"],
38 license_kinds: [
39 "SPDX-license-identifier-Apache-2.0",
40 "SPDX-license-identifier-BSD",
41 ],
42 license_text: [
43 "LICENSE.txt",
44 ],
45}
46
Jesse Hall25eb2f12019-04-12 13:45:34 -070047ndk_headers {
48 name: "ndk_vulkan_headers",
49 from: "include",
50 to: "",
51 srcs: [
52 "include/vulkan/vk_platform.h",
53 "include/vulkan/vulkan.h",
54 "include/vulkan/vulkan_core.h",
55 "include/vulkan/vulkan_android.h",
56 ],
57 license: "NOTICE",
58}
59
60// This module makes Vulkan headers available to other modules without
61// having to link against libvulkan.so, e.g. for the Vulkan loader and
62// drivers, or things that dlopen libvulkan.so. It's available to system
63// modules, as part of the VNDK, and to unbundled modules.
64cc_library_headers {
65 name: "vulkan_headers",
66 export_include_dirs: ["include"],
Jason Macnak9cb71ab2020-06-30 12:59:17 -070067 host_supported: true,
Jesse Hall25eb2f12019-04-12 13:45:34 -070068 vendor_available: true,
69 sdk_version: "24",
Jiyong Park5b85fd22021-01-05 14:45:39 +090070 apex_available: [
71 "//apex_available:platform",
72 "com.android.virt",
73 ],
Colin Cross1783d5a2021-04-26 17:39:17 -070074 llndk: {
75 llndk_headers: true,
76 },
Jesse Hall25eb2f12019-04-12 13:45:34 -070077}
Victor Khimenko6f977ce2020-10-20 01:45:40 +020078
79// This module makes Vulkan XML file available to vendor code.
80filegroup {
81 name: "vulkan_headers_registry",
82 srcs: ["registry/vk.xml"],
83}