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

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

Issue 188193002: Linux sandbox: add basic Yama support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Better comments. Created 6 years, 9 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
« no previous file with comments | « no previous file | sandbox/linux/sandbox_linux_test_sources.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['OS=="linux"', { 8 ['OS=="linux"', {
9 'compile_suid_client': 1, 9 'compile_suid_client': 1,
10 'compile_credentials': 1, 10 'compile_credentials': 1,
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 '../..', 174 '../..',
175 ], 175 ],
176 }, 176 },
177 { 'target_name': 'sandbox_services', 177 { 'target_name': 'sandbox_services',
178 'type': 'static_library', 178 'type': 'static_library',
179 'sources': [ 179 'sources': [
180 'services/broker_process.cc', 180 'services/broker_process.cc',
181 'services/broker_process.h', 181 'services/broker_process.h',
182 'services/init_process_reaper.cc', 182 'services/init_process_reaper.cc',
183 'services/init_process_reaper.h', 183 'services/init_process_reaper.h',
184 'services/scoped_process.cc',
185 'services/scoped_process.h',
184 'services/thread_helpers.cc', 186 'services/thread_helpers.cc',
185 'services/thread_helpers.h', 187 'services/thread_helpers.h',
188 'services/yama.h',
189 'services/yama.cc',
186 ], 190 ],
187 'dependencies': [ 191 'dependencies': [
188 '../base/base.gyp:base', 192 '../base/base.gyp:base',
189 ], 193 ],
190 'conditions': [ 194 'conditions': [
191 ['compile_credentials==1', { 195 ['compile_credentials==1', {
192 'sources': [ 196 'sources': [
193 'services/credentials.cc', 197 'services/credentials.cc',
194 'services/credentials.h', 198 'services/credentials.h',
195 ], 199 ],
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 }, 287 },
284 'dependencies': [ 288 'dependencies': [
285 'sandbox_linux_jni_unittests', 289 'sandbox_linux_jni_unittests',
286 ], 290 ],
287 'includes': [ '../../build/apk_test.gypi' ], 291 'includes': [ '../../build/apk_test.gypi' ],
288 } 292 }
289 ], 293 ],
290 }], 294 }],
291 ], 295 ],
292 } 296 }
OLDNEW
« no previous file with comments | « no previous file | sandbox/linux/sandbox_linux_test_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698