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

Issue 3225010: Pull seccomp-sandbox in via DEPS rather than using an in-tree copy... (Closed)

Created:
10 years, 3 months ago by Mark Seaborn
Modified:
9 years, 5 months ago
CC:
chromium-reviews, agl
Visibility:
Public.

Description

Pull seccomp-sandbox in via DEPS rather than using an in-tree copy This means changes to the sandbox won't have to be committed twice, to both trees. This is a retry of r57921, which was committed with git-svn and failed to remove the "seccomp" directory. This caused problems when trying to "svn checkout" to the same location, and the change was reverted. This time I will use SVN to commit the change. BUG=none TEST=smoke test of running chromium with --enable-seccomp-sandbox Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=58184

Patch Set 1 #

Patch Set 2 : '' #

Patch Set 3 : '' #

Patch Set 4 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+8 lines, -14323 lines) Patch
M .gitignore View 1 chunk +1 line, -0 lines 0 comments Download
M DEPS View 1 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/zygote_main_linux.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/nacl/nacl_main_platform_delegate_linux.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/renderer/renderer_main_platform_delegate_linux.cc View 1 chunk +1 line, -1 line 0 comments Download
D sandbox/linux/seccomp/Makefile View 1 chunk +0 lines, -59 lines 0 comments Download
D sandbox/linux/seccomp/access.cc View 1 chunk +0 lines, -97 lines 0 comments Download
D sandbox/linux/seccomp/allocator.h View 1 chunk +0 lines, -88 lines 0 comments Download
D sandbox/linux/seccomp/allocator.cc View 1 chunk +0 lines, -136 lines 0 comments Download
D sandbox/linux/seccomp/clone.cc View 1 chunk +0 lines, -179 lines 0 comments Download
D sandbox/linux/seccomp/debug.h View 1 chunk +0 lines, -80 lines 0 comments Download
D sandbox/linux/seccomp/debug.cc View 1 chunk +0 lines, -363 lines 0 comments Download
D sandbox/linux/seccomp/exit.cc View 1 chunk +0 lines, -38 lines 0 comments Download
D sandbox/linux/seccomp/getpid.cc View 1 chunk +0 lines, -17 lines 0 comments Download
D sandbox/linux/seccomp/gettid.cc View 1 chunk +0 lines, -18 lines 0 comments Download
D sandbox/linux/seccomp/ioctl.cc View 1 chunk +0 lines, -61 lines 0 comments Download
D sandbox/linux/seccomp/ipc.cc View 1 chunk +0 lines, -351 lines 0 comments Download
D sandbox/linux/seccomp/library.h View 1 chunk +0 lines, -199 lines 0 comments Download
D sandbox/linux/seccomp/library.cc View 1 chunk +0 lines, -1208 lines 0 comments Download
D sandbox/linux/seccomp/linux_syscall_support.h View 1 chunk +0 lines, -3208 lines 0 comments Download
D sandbox/linux/seccomp/madvise.cc View 1 chunk +0 lines, -81 lines 0 comments Download
D sandbox/linux/seccomp/maps.h View 1 chunk +0 lines, -94 lines 0 comments Download
D sandbox/linux/seccomp/maps.cc View 1 chunk +0 lines, -267 lines 0 comments Download
D sandbox/linux/seccomp/mmap.cc View 1 chunk +0 lines, -75 lines 0 comments Download
D sandbox/linux/seccomp/mprotect.cc View 1 chunk +0 lines, -73 lines 0 comments Download
D sandbox/linux/seccomp/munmap.cc View 1 chunk +0 lines, -70 lines 0 comments Download
D sandbox/linux/seccomp/mutex.h View 1 chunk +0 lines, -153 lines 0 comments Download
D sandbox/linux/seccomp/open.cc View 1 chunk +0 lines, -99 lines 0 comments Download
D sandbox/linux/seccomp/sandbox.h View 1 chunk +0 lines, -12 lines 0 comments Download
D sandbox/linux/seccomp/sandbox.cc View 1 chunk +0 lines, -838 lines 0 comments Download
D sandbox/linux/seccomp/sandbox_impl.h View 1 chunk +0 lines, -715 lines 0 comments Download
D sandbox/linux/seccomp/seccomp.gyp View 1 chunk +0 lines, -93 lines 0 comments Download
D sandbox/linux/seccomp/securemem.h View 1 chunk +0 lines, -205 lines 0 comments Download
D sandbox/linux/seccomp/securemem.cc View 1 chunk +0 lines, -105 lines 0 comments Download
D sandbox/linux/seccomp/sigaction.cc View 1 chunk +0 lines, -177 lines 0 comments Download
D sandbox/linux/seccomp/sigprocmask.cc View 1 chunk +0 lines, -120 lines 0 comments Download
D sandbox/linux/seccomp/socketcall.cc View 1 chunk +0 lines, -1039 lines 0 comments Download
D sandbox/linux/seccomp/stat.cc View 1 chunk +0 lines, -197 lines 0 comments Download
D sandbox/linux/seccomp/syscall.h View 1 chunk +0 lines, -22 lines 0 comments Download
D sandbox/linux/seccomp/syscall.cc View 1 chunk +0 lines, -380 lines 0 comments Download
D sandbox/linux/seccomp/syscall_table.h View 1 chunk +0 lines, -43 lines 0 comments Download
D sandbox/linux/seccomp/syscall_table.c View 1 chunk +0 lines, -153 lines 0 comments Download
D sandbox/linux/seccomp/tests/list_tests.py View 1 chunk +0 lines, -22 lines 0 comments Download
D sandbox/linux/seccomp/tests/test_syscalls.cc View 1 chunk +0 lines, -758 lines 0 comments Download
D sandbox/linux/seccomp/timestats.cc View 1 chunk +0 lines, -191 lines 0 comments Download
D sandbox/linux/seccomp/tls.h View 1 chunk +0 lines, -155 lines 0 comments Download
D sandbox/linux/seccomp/trusted_process.cc View 1 chunk +0 lines, -268 lines 0 comments Download
D sandbox/linux/seccomp/trusted_thread.cc View 1 chunk +0 lines, -1483 lines 0 comments Download
D sandbox/linux/seccomp/x86_decode.h View 1 chunk +0 lines, -19 lines 0 comments Download
D sandbox/linux/seccomp/x86_decode.cc View 1 chunk +0 lines, -310 lines 0 comments Download
M sandbox/sandbox.gyp View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 7 (0 generated)
Mark Seaborn
Unfortunately Rietveld does not show that, this time, I did "svn rm sandbox/linux/seccomp" -- it ...
10 years, 3 months ago (2010-08-31 08:13:40 UTC) #1
Markus (顧孟勤)
LGTM
10 years, 3 months ago (2010-08-31 08:59:41 UTC) #2
Nicolas Sylvain
You are still not deleting the tests files under seccomp. I'd really prefer if you ...
10 years, 3 months ago (2010-08-31 16:02:45 UTC) #3
Nicolas Sylvain
On Tue, Aug 31, 2010 at 9:02 AM, Nicolas Sylvain <nsylvain@chromium.org>wrote: > You are still ...
10 years, 3 months ago (2010-08-31 16:03:49 UTC) #4
Mark Seaborn
On 31 August 2010 17:03, Nicolas Sylvain <nsylvain@chromium.org> wrote: > On Tue, Aug 31, 2010 ...
10 years, 3 months ago (2010-09-01 10:29:48 UTC) #5
Mark Seaborn
On 31 August 2010 17:02, Nicolas Sylvain <nsylvain@chromium.org> wrote: > You are still not deleting ...
10 years, 3 months ago (2010-09-01 13:08:49 UTC) #6
nsylvain
10 years, 3 months ago (2010-09-01 13:50:56 UTC) #7
LGTM

src/breakpad does not need to be added to the svn:ignore because it is actually
a real directory. What we fetch is in 
src/breakpad/src

thanks

Powered by Google App Engine
This is Rietveld 408576698