diff options
author | Mikael Urankar <mikael@FreeBSD.org> | 2020-11-20 10:41:13 +0000 |
---|---|---|
committer | Mikael Urankar <mikael@FreeBSD.org> | 2020-11-20 10:41:13 +0000 |
commit | 9a4ce488e85c4b59c1d2acdfd23cb88b7e9ca198 (patch) | |
tree | 84f3b4638ccf347ba91572ef9f96440521ed236f /lang/v8/files/patch-build_linux_unbundle_libusb.gn | |
parent | net/concourse-fly: Update to 6.7.1 (diff) |
lang/v8: Update to 8.7.220.23
PR: 213202
Reported by: many
Approved by: sunpoet (maintainer timeout)
Diffstat (limited to 'lang/v8/files/patch-build_linux_unbundle_libusb.gn')
-rw-r--r-- | lang/v8/files/patch-build_linux_unbundle_libusb.gn | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lang/v8/files/patch-build_linux_unbundle_libusb.gn b/lang/v8/files/patch-build_linux_unbundle_libusb.gn new file mode 100644 index 000000000000..1cc0b00012c6 --- /dev/null +++ b/lang/v8/files/patch-build_linux_unbundle_libusb.gn @@ -0,0 +1,27 @@ +--- build/linux/unbundle/libusb.gn.orig 2019-03-17 01:47:13 UTC ++++ build/linux/unbundle/libusb.gn +@@ -0,0 +1,24 @@ ++# Copyright 2016 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") ++import("//build/shim_headers.gni") ++ ++pkg_config("system_libusb") { ++ packages = [ "libusb-1.0" ] ++} ++ ++shim_headers("libusb_shim") { ++ root_path = "src/libusb" ++ headers = [ ++ "libusb.h", ++ ] ++} ++ ++source_set("libusb") { ++ deps = [ ++ ":libusb_shim", ++ ] ++ public_configs = [ ":system_libusb" ] ++} |