• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// 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.
17package {
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
47ndk_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"],
67    host_supported: true,
68    vendor_available: true,
69    sdk_version: "24",
70    apex_available: [
71        "//apex_available:platform",
72        "com.android.virt",
73    ],
74    llndk: {
75        llndk_headers: true,
76    },
77}
78
79// This module makes Vulkan XML file available to vendor code.
80filegroup {
81    name: "vulkan_headers_registry",
82    srcs: ["registry/vk.xml"],
83}
84