summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/build/config/linux/libdrm/BUILD.gn
blob: 79695cbc60ce26f07a035cbeb1cd0d722fdb5d3b (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
# Copyright 2018 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/chromecast_build.gni")
import("//build/config/chromeos/args.gni")
import("//build/config/linux/pkg_config.gni")

assert(is_linux || is_chromeos)

declare_args() {
  # Controls whether the build should use the version of libdrm library shipped
  # with the system. In release builds of desktop Linux and Chrome OS we use the
  # system version. Some Chromecast devices use this as well.
  use_system_libdrm = is_chromeos_device || ((is_linux || is_bsd) && !is_chromecast)
}

if (use_system_libdrm) {
  pkg_config("libdrm_config") {
    packages = [ "libdrm" ]
  }
  group("libdrm") {
    public_configs = [ ":libdrm_config" ]
  }
} else {
  group("libdrm") {
    public_deps = [ "//third_party/libdrm" ]
  }
  config("libdrm_exynos_include_config") {
    include_dirs = [ "//third_party/libdrm/src/exynos" ]
  }
}