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

Side by Side Diff: sandbox/linux/sandbox_linux.gypi

Issue 10833044: Refactored ErrorCode into it's own class (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased, and removed "protected" as requested by jln Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 # We have two principal targets: sandbox and sandbox_linux_unittests 7 # We have two principal targets: sandbox and sandbox_linux_unittests
8 # All other targets are listed as dependencies. 8 # All other targets are listed as dependencies.
9 # FIXME(jln): for historial reasons, sandbox_linux is the setuid sandbox 9 # FIXME(jln): for historial reasons, sandbox_linux is the setuid sandbox
10 # and is its own target. 10 # and is its own target.
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 'sources': [ 51 'sources': [
52 'seccomp-bpf/sandbox_bpf_unittest.cc', 52 'seccomp-bpf/sandbox_bpf_unittest.cc',
53 ], 53 ],
54 }], 54 }],
55 ], 55 ],
56 }, 56 },
57 { 57 {
58 'target_name': 'seccomp_bpf', 58 'target_name': 'seccomp_bpf',
59 'type': 'static_library', 59 'type': 'static_library',
60 'sources': [ 60 'sources': [
61 'seccomp-bpf/errorcode.cc',
62 'seccomp-bpf/errorcode.h',
61 'seccomp-bpf/sandbox_bpf.cc', 63 'seccomp-bpf/sandbox_bpf.cc',
62 'seccomp-bpf/sandbox_bpf.h', 64 'seccomp-bpf/sandbox_bpf.h',
63 'seccomp-bpf/verifier.cc', 65 'seccomp-bpf/verifier.cc',
64 'seccomp-bpf/verifier.h', 66 'seccomp-bpf/verifier.h',
65 ], 67 ],
66 'dependencies': [ 68 'dependencies': [
67 '../base/base.gyp:base', 69 '../base/base.gyp:base',
68 ], 70 ],
69 'include_dirs': [ 71 'include_dirs': [
70 '../..', 72 '../..',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 'dependencies': [ 119 'dependencies': [
118 '../base/base.gyp:base', 120 '../base/base.gyp:base',
119 ], 121 ],
120 'include_dirs': [ 122 'include_dirs': [
121 '..', 123 '..',
122 ], 124 ],
123 }, 125 },
124 126
125 ], 127 ],
126 } 128 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698