blob: fa2aaade8e24b2f8cb5ab1a3bb5160bf74327d08 [file] [log] [blame]
# Copyright 2016 Google, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice (including the next
# paragraph) shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
import("//third_party/mako/py_srcs.gni")
import("../../../mesa.gni")
mesa_python_stdout_to_file_action("gen_pack7_header") {
output = "gen7_pack.h"
script = "gen_pack_header.py"
inputs = [ "gen7.xml" ]
sources = [ "util.py" ]
args = rebase_path(inputs, root_build_dir)
}
mesa_python_stdout_to_file_action("gen_pack75_header") {
output = "gen75_pack.h"
script = "gen_pack_header.py"
inputs = [ "gen75.xml" ]
sources = [ "util.py" ]
args = rebase_path(inputs, root_build_dir)
}
mesa_python_stdout_to_file_action("gen_pack8_header") {
output = "gen8_pack.h"
script = "gen_pack_header.py"
inputs = [ "gen8.xml" ]
sources = [ "util.py" ]
args = rebase_path(inputs, root_build_dir)
}
mesa_python_stdout_to_file_action("gen_pack9_header") {
output = "gen9_pack.h"
script = "gen_pack_header.py"
inputs = [ "gen9.xml" ]
sources = [ "util.py" ]
args = rebase_path(inputs, root_build_dir)
}
mesa_python_stdout_to_file_action("gen_pack11_header") {
output = "gen11_pack.h"
script = "gen_pack_header.py"
inputs = [ "gen11.xml" ]
sources = [ "util.py" ]
args = rebase_path(inputs, root_build_dir)
}
mesa_python_stdout_to_file_action("gen_pack12_header") {
output = "gen12_pack.h"
script = "gen_pack_header.py"
inputs = [ "gen12.xml" ]
sources = [ "util.py" ]
args = rebase_path(inputs, root_build_dir)
}
mesa_python_stdout_to_file_action("gen_pack125_header") {
output = "gen125_pack.h"
script = "gen_pack_header.py"
inputs = [ "gen125.xml" ]
sources = [ "util.py" ]
args = rebase_path(inputs, root_build_dir)
}
mesa_python_stdout_to_file_action("gen_bits_header") {
output = "genX_bits.h"
script = "gen_bits_header.py"
inputs = [
"gen11.xml",
"gen12.xml",
"gen125.xml",
"gen7.xml",
"gen75.xml",
"gen8.xml",
"gen9.xml",
]
sources = [ "util.py" ]
libraries = [ "//third_party/mako" ]
args = rebase_path(inputs, root_build_dir)
}