summaryrefslogtreecommitdiff
path: root/deps/v8/build/config/linux/dri/BUILD.gn
blob: cad883b76d9bf83ff28f99e955135eafe4712e96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/config/linux/pkg_config.gni")

assert(is_linux, "This file should only be referenced on Linux")

pkg_config("dri") {
  packages = [ "dri" ]
  dri_driver_dir = exec_script(pkg_config_script,
                               pkg_config_args + [
                                     "--dridriverdir",
                                     "dri",
                                   ],
                               "string")
  defines = [ "DRI_DRIVER_DIR=\"$dri_driver_dir\"" ]
}