Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Unified Diff: sandbox/linux/seccomp/seccomp.gyp

Issue 3225010: Pull seccomp-sandbox in via DEPS rather than using an in-tree copy... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sandbox/linux/seccomp/sandbox_impl.h ('k') | sandbox/linux/seccomp/securemem.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/linux/seccomp/seccomp.gyp
===================================================================
--- sandbox/linux/seccomp/seccomp.gyp (revision 57969)
+++ sandbox/linux/seccomp/seccomp.gyp (working copy)
@@ -1,93 +0,0 @@
-# Copyright (c) 2010 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.
-
-{
- 'variables': {
- 'chromium_code': 1,
- 'seccomp_intermediate_dir': '<(INTERMEDIATE_DIR)/seccomp-sandbox',
- },
- 'targets': [
- {
- 'target_name': 'seccomp_sandbox',
- 'type': 'static_library',
- 'sources': [
- 'access.cc',
- 'allocator.cc',
- 'allocator.h',
- 'clone.cc',
- 'exit.cc',
- 'debug.cc',
- 'getpid.cc',
- 'gettid.cc',
- 'ioctl.cc',
- 'ipc.cc',
- 'library.cc',
- 'library.h',
- 'linux_syscall_support.h',
- 'madvise.cc',
- 'maps.cc',
- 'maps.h',
- 'mmap.cc',
- 'mprotect.cc',
- 'munmap.cc',
- 'mutex.h',
- 'open.cc',
- 'sandbox.cc',
- 'sandbox.h',
- 'sandbox_impl.h',
- 'securemem.cc',
- 'securemem.h',
- 'sigaction.cc',
- 'sigprocmask.cc',
- 'socketcall.cc',
- 'stat.cc',
- 'syscall.cc',
- 'syscall.h',
- 'syscall_table.c',
- 'syscall_table.h',
- 'tls.h',
- 'trusted_process.cc',
- 'trusted_thread.cc',
- 'x86_decode.cc',
- 'x86_decode.h',
- ],
- },
- {
- 'target_name': 'seccomp_tests',
- 'type': 'executable',
- 'sources': [
- 'tests/test_syscalls.cc',
- ],
- 'include_dirs': [
- '.',
- '<(seccomp_intermediate_dir)',
- ],
- 'dependencies': [
- 'seccomp_sandbox',
- ],
- 'libraries': [
- '-lpthread',
- '-lutil', # For openpty()
- ],
- 'actions': [
- {
- 'action_name': 'make_test_list',
- 'inputs': [
- 'tests/list_tests.py',
- 'tests/test_syscalls.cc',
- ],
- 'outputs': ['<(seccomp_intermediate_dir)/test-list.h'],
- 'action': ['sh', '-c', 'python <(_inputs) > <(_outputs)'],
- },
- ],
- },
- {
- 'target_name': 'timestats',
- 'type': 'executable',
- 'sources': [
- 'timestats.cc',
- ],
- },
- ],
-}
« no previous file with comments | « sandbox/linux/seccomp/sandbox_impl.h ('k') | sandbox/linux/seccomp/securemem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698