summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjln@chromium.org <jln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-18 19:20:27 +0000
committerjln@chromium.org <jln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-18 19:20:27 +0000
commit3cd057d5f8e4df5dd83f071f4752dd1c2588afa4 (patch)
tree11edf8dadc7ac9fee12233f7976849fd1436567c
parent19c6868446445c04b994afaba5e4dd45f28b72a6 (diff)
downloadchromium_src-3cd057d5f8e4df5dd83f071f4752dd1c2588afa4.zip
chromium_src-3cd057d5f8e4df5dd83f071f4752dd1c2588afa4.tar.gz
chromium_src-3cd057d5f8e4df5dd83f071f4752dd1c2588afa4.tar.bz2
Move sandbox/sandbox_linux.gypi to sandbox/linux
Make it symmetrical with the Windows version. BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10808003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147291 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--sandbox/linux/sandbox_linux.gypi (renamed from sandbox/sandbox_linux.gypi)34
-rw-r--r--sandbox/sandbox.gyp2
2 files changed, 18 insertions, 18 deletions
diff --git a/sandbox/sandbox_linux.gypi b/sandbox/linux/sandbox_linux.gypi
index 865c22d..5286921 100644
--- a/sandbox/sandbox_linux.gypi
+++ b/sandbox/linux/sandbox_linux.gypi
@@ -37,15 +37,15 @@
'../testing/gtest.gyp:gtest',
],
'sources': [
- 'linux/tests/unit_tests.cc',
+ 'tests/unit_tests.cc',
],
'include_dirs': [
- '..',
+ '../..',
],
'conditions': [
[ 'OS=="linux" and (target_arch=="ia32" or target_arch=="x64")', {
'sources': [
- 'linux/seccomp-bpf/sandbox_bpf_unittest.cc',
+ 'seccomp-bpf/sandbox_bpf_unittest.cc',
],
}],
],
@@ -54,16 +54,16 @@
'target_name': 'seccomp_bpf',
'type': 'static_library',
'sources': [
- 'linux/seccomp-bpf/sandbox_bpf.cc',
- 'linux/seccomp-bpf/sandbox_bpf.h',
- 'linux/seccomp-bpf/verifier.cc',
- 'linux/seccomp-bpf/verifier.h',
+ 'seccomp-bpf/sandbox_bpf.cc',
+ 'seccomp-bpf/sandbox_bpf.h',
+ 'seccomp-bpf/verifier.cc',
+ 'seccomp-bpf/verifier.h',
],
'dependencies': [
'../base/base.gyp:base',
],
'include_dirs': [
- '..',
+ '../..',
],
},
{
@@ -71,27 +71,27 @@
'target_name': 'chrome_sandbox',
'type': 'executable',
'sources': [
- 'linux/suid/linux_util.c',
- 'linux/suid/linux_util.h',
- 'linux/suid/process_util.h',
- 'linux/suid/process_util_linux.c',
- 'linux/suid/sandbox.h',
- 'linux/suid/sandbox.c',
+ 'suid/linux_util.c',
+ 'suid/linux_util.h',
+ 'suid/process_util.h',
+ 'suid/process_util_linux.c',
+ 'suid/sandbox.h',
+ 'suid/sandbox.c',
],
'cflags': [
# For ULLONG_MAX
'-std=gnu99',
],
'include_dirs': [
- '..',
+ '../..',
],
},
{
'target_name': 'libc_urandom_override',
'type': 'static_library',
'sources': [
- 'linux/services/libc_urandom_override.cc',
- 'linux/services/libc_urandom_override.h',
+ 'services/libc_urandom_override.cc',
+ 'services/libc_urandom_override.h',
],
'dependencies': [
'../base/base.gyp:base',
diff --git a/sandbox/sandbox.gyp b/sandbox/sandbox.gyp
index 1d87d11..c953f08 100644
--- a/sandbox/sandbox.gyp
+++ b/sandbox/sandbox.gyp
@@ -14,7 +14,7 @@
}],
[ 'OS=="linux"', {
'includes': [
- 'sandbox_linux.gypi',
+ 'linux/sandbox_linux.gypi',
],
}],
[ 'OS!="win" and OS!="mac" and OS!="linux"', {