• 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
15package {
16    default_applicable_licenses: ["external_vulkan-headers_license"],
17}
18
19license {
20    name: "external_vulkan-headers_license",
21    visibility: [":__subpackages__"],
22    license_kinds: [
23        "SPDX-license-identifier-Apache-2.0",
24    ],
25    license_text: [
26        "LICENSES/Apache-2.0.txt",
27    ],
28}
29
30license {
31    name: "external_vulkan-headers_license.unused.MIT",
32    visibility: [":__subpackages__"],
33    license_kinds: [
34        "SPDX-license-identifier-MIT",
35    ],
36    license_text: [
37        "LICENSES/MIT.txt",
38    ],
39}
40
41filegroup {
42    name: "external_vulkan-headers_unused.MIT",
43    visibility: ["//visibility:private"],
44    licenses: ["external_vulkan-headers_license.unused.MIT"],
45    srcs: ["registry/parse_dependency.py"],
46}
47
48// This module defines which headers are included in the NDK sysroot during
49// the NDK build process.
50ndk_headers {
51    name: "ndk_vulkan_headers",
52    from: "include",
53    to: "",
54    srcs: [
55        "include/**/*.h",
56    ],
57    license: "LICENSES/Apache-2.0.txt",
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