diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-04 03:16:17 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-04 03:16:17 +0000 |
commit | f8dd43724006ea8b000d1a842e66bc7b1b50d024 (patch) | |
tree | 83be185f7f05a432dae736d02975ebc80dd99c61 /sandbox/sandbox.gyp | |
parent | 739ee563b8acbc93d8c596d3d721fe794c334923 (diff) | |
download | chromium_src-f8dd43724006ea8b000d1a842e66bc7b1b50d024.zip chromium_src-f8dd43724006ea8b000d1a842e66bc7b1b50d024.tar.gz chromium_src-f8dd43724006ea8b000d1a842e66bc7b1b50d024.tar.bz2 |
Allow chrome_sandbox to act as a helper program and find the socket with a given inode number.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/312003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30931 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/sandbox.gyp')
-rw-r--r-- | sandbox/sandbox.gyp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sandbox/sandbox.gyp b/sandbox/sandbox.gyp index 598de3f..260a794 100644 --- a/sandbox/sandbox.gyp +++ b/sandbox/sandbox.gyp @@ -10,8 +10,14 @@ 'target_name': 'chrome_sandbox', 'type': 'executable', 'sources': [ + 'linux/suid/linux_util.c', + 'linux/suid/linux_util.h', 'linux/suid/sandbox.c', ], + 'cflags': [ + # For ULLONG_MAX + '-std=gnu99', + ], 'include_dirs': [ '..', ], |