summaryrefslogtreecommitdiff
path: root/BUILD.gn
blob: f280e4898c8610f59f26dfd2f55abd2a5be7296f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Copyright (C) 2018-2019 The ANGLE Project Authors.
# Copyright (C) 2019-2023 LunarG, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import("//build_overrides/build.gni")
import("//build_overrides/vulkan_tools.gni")

if (!is_android) {
  vulkan_undefine_configs = []
  if (is_win && build_with_chromium) {
    vulkan_undefine_configs += [
      "//build/config/win:nominmax",
      "//build/config/win:unicode",
    ]
  }

  # Vulkan Mock ICD
  # ---------------
  shared_library("VkICD_mock_icd") {
    configs -= vulkan_undefine_configs
    deps = [
      "$vulkan_headers_dir:vulkan_headers"
    ]
    data_deps = [ ":vulkan_gen_icd_json_file" ]
    sources = [
      "icd/mock_icd.h",
      "icd/mock_icd.cpp",
      "icd/generated/function_declarations.h",
      "icd/generated/function_definitions.h",
      "icd/generated/vk_typemap_helper.h",
    ]
    include_dirs = [
        "icd",
        "icd/generated",
    ]
    if (is_win) {
      sources += [ "icd/VkICD_mock_icd.def" ]
    }
    if (build_with_chromium) {
      configs -= [ "//build/config/compiler:chromium_code" ]
      configs += [ "//build/config/compiler:no_chromium_code" ]
    }
  }

  action("vulkan_gen_icd_json_file") {
    script = "build-gn/generate_vulkan_layers_json.py"

    public_deps = [ "$vulkan_headers_dir:vulkan_headers" ]

    sources = [  "icd/VkICD_mock_icd.json.in" ]

    vulkan_data_dir = "$root_out_dir/$vulkan_data_subdir"

    outputs = [ "$vulkan_data_dir/VkICD_mock_icd.json" ]

    if (is_linux) {
      _platform = "Linux"
    } else if (is_win) {
      _platform = "Windows"
    } else if (is_mac) {
      _platform = "Darwin"
    } else if (is_fuchsia) {
      _platform = "Fuchsia"
    } else {
      _platform = "Other"
    }

    args =  [
      "--icd",
      "--platform", _platform,
      rebase_path("icd/", root_build_dir),
      rebase_path(vulkan_data_dir, root_build_dir)
    ] + rebase_path(sources, root_build_dir)

    if (is_win) {
      args += [ "--no-path-prefix" ]
    }

    data = outputs
  }
}