mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 03:30:32 -04:00
- Make existing patches apply cleanly Changelog: https://chromium.googlesource.com/chromium/src/+log/72.0.3626.121..73.0.3683.86?pretty=fuller&n=10000 Submitted by: Matthias Wolf MFH: 2019Q2
47 lines
1.3 KiB
Text
47 lines
1.3 KiB
Text
--- sandbox/linux/BUILD.gn.orig 2019-03-11 22:01:01 UTC
|
|
+++ sandbox/linux/BUILD.gn
|
|
@@ -12,12 +12,12 @@ if (is_android) {
|
|
}
|
|
|
|
declare_args() {
|
|
- compile_suid_client = is_linux
|
|
+ compile_suid_client = is_linux && !is_bsd
|
|
|
|
- compile_credentials = is_linux
|
|
+ compile_credentials = is_linux && !is_bsd
|
|
|
|
# On Android, use plain GTest.
|
|
- use_base_test_suite = is_linux
|
|
+ use_base_test_suite = is_linux && !is_bsd
|
|
}
|
|
|
|
if (is_nacl_nonsfi) {
|
|
@@ -379,7 +379,7 @@ component("sandbox_services") {
|
|
public_deps += [ ":sandbox_services_headers" ]
|
|
}
|
|
|
|
- if (is_nacl_nonsfi) {
|
|
+ if (is_nacl_nonsfi || is_bsd) {
|
|
cflags = [ "-fgnu-inline-asm" ]
|
|
|
|
sources -= [
|
|
@@ -387,6 +387,8 @@ component("sandbox_services") {
|
|
"services/init_process_reaper.h",
|
|
"services/scoped_process.cc",
|
|
"services/scoped_process.h",
|
|
+ "services/syscall_wrappers.cc",
|
|
+ "services/syscall_wrappers.h",
|
|
"services/yama.cc",
|
|
"services/yama.h",
|
|
"syscall_broker/broker_channel.cc",
|
|
@@ -405,6 +407,10 @@ component("sandbox_services") {
|
|
"syscall_broker/broker_process.h",
|
|
"syscall_broker/broker_simple_message.cc",
|
|
"syscall_broker/broker_simple_message.h",
|
|
+ ]
|
|
+ sources += [
|
|
+ "services/libc_interceptor.cc",
|
|
+ "services/libc_interceptor.h",
|
|
]
|
|
} else if (!is_android) {
|
|
sources += [
|