summaryrefslogtreecommitdiffstats
path: root/sandbox/linux/seccomp-bpf/Makefile
diff options
context:
space:
mode:
authormarkus@chromium.org <markus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-26 01:39:39 +0000
committermarkus@chromium.org <markus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-26 01:39:39 +0000
commit083fe1e0bc4ead809af46a75fbb979cc95e7491d (patch)
treed4a47bc54dc91671fc917968e7ad5ed6203b474b /sandbox/linux/seccomp-bpf/Makefile
parent3124fbfa6a99ad601c71bb2edf403ddb5cdf080b (diff)
downloadchromium_src-083fe1e0bc4ead809af46a75fbb979cc95e7491d.zip
chromium_src-083fe1e0bc4ead809af46a75fbb979cc95e7491d.tar.gz
chromium_src-083fe1e0bc4ead809af46a75fbb979cc95e7491d.tar.bz2
SECCOMP-BPF: Refactor the BPF sandbox API to use objects rather than "static" methods.
This change allows us to stack multiple instances of the sandbox. Also, split up headers in a generally saner fashion. BUG=130662 TEST=sandbox_linux_unittests Review URL: https://chromiumcodereview.appspot.com/12223109 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184541 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/linux/seccomp-bpf/Makefile')
-rw-r--r--sandbox/linux/seccomp-bpf/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/linux/seccomp-bpf/Makefile b/sandbox/linux/seccomp-bpf/Makefile
index b7c1f9d..6b35580 100644
--- a/sandbox/linux/seccomp-bpf/Makefile
+++ b/sandbox/linux/seccomp-bpf/Makefile
@@ -2,7 +2,7 @@ DEF_CFLAGS = -g -O3 -Wall -Werror -Wextra -Wno-missing-field-initializers -fPIC
DEF_CPPFLAGS = -D_GNU_SOURCE -DSECCOMP_BPF_STANDALONE -iquote ../../..
DEF_LDFLAGS = -g -lpthread
DEPFLAGS = -MMD -MF .$@.d
-MODS := demo sandbox_bpf basicblock codegen die errorcode syscall syscall_iterator trap util verifier
+MODS := demo sandbox_bpf basicblock codegen die errorcode syscall syscall_iterator trap verifier
OBJS64 := $(shell echo ${MODS} | xargs -n 1 | sed -e 's/$$/.o64/')
OBJS32 := $(shell echo ${MODS} | xargs -n 1 | sed -e 's/$$/.o32/')
ALL_OBJS = $(OBJS32) $(OBJS64)