31 lines
1 KiB
Text
31 lines
1 KiB
Text
# 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("//chromium/build/config/chromecast_build.gni")
|
|
import("//chromium/build/config/chromeos/args.gni")
|
|
import("//chromium/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" ]
|
|
}
|
|
}
|