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

Side by Side Diff: src/trusted/service_runtime/service_runtime.gyp

Issue 7677036: Enable the service runtime to use a zero-based sandbox on Linux. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fixes for Bennet's review Created 9 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
« no previous file with comments | « src/trusted/service_runtime/linux/sel_memory.c ('k') | tests/multiple_sandboxes/nacl.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'variables': { 7 'variables': {
8 'conditions': [ 8 'conditions': [
9 ['OS=="linux"', { 9 ['OS=="linux"', {
10 'syscall_handler': [ 10 'syscall_handler': [
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 'type': 'executable', 247 'type': 'executable',
248 'dependencies': [ 248 'dependencies': [
249 'sel', 249 'sel',
250 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', 250 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
251 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped _desc', 251 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped _desc',
252 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualify.gy p:platform_qual_lib', 252 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualify.gy p:platform_qual_lib',
253 ], 253 ],
254 'sources': [ 254 'sources': [
255 'sel_main.c', 255 'sel_main.c',
256 ], 256 ],
257 'conditions': [
258 ['OS=="linux"', {
259 'link_settings': {
260 'libraries': [
261 '-ldl',
262 ],
263 },
264 }],
265 ],
257 }, 266 },
258 # no tests are built here; see service_runtime_test.gyp 267 # no tests are built here; see service_runtime_test.gyp
259 ], 268 ],
260 'conditions': [ 269 'conditions': [
261 ['OS=="win"', { 270 ['OS=="win"', {
262 'targets': [ 271 'targets': [
263 { 272 {
264 'target_name': 'sel64', 273 'target_name': 'sel64',
265 'type': 'static_library', 274 'type': 'static_library',
266 'variables': { 275 'variables': {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 ], 356 ],
348 'sources': [ 357 'sources': [
349 'sel_main.c', 358 'sel_main.c',
350 ], 359 ],
351 }, 360 },
352 # TODO(bsy): no tests are built; see build.scons 361 # TODO(bsy): no tests are built; see build.scons
353 ], 362 ],
354 }], 363 }],
355 ] 364 ]
356 } 365 }
OLDNEW
« no previous file with comments | « src/trusted/service_runtime/linux/sel_memory.c ('k') | tests/multiple_sandboxes/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698