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

Side by Side Diff: components/nacl.gyp

Issue 250773003: NaCl Linux: create NaClSandbox class (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address nits. Created 6 years, 7 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 | components/nacl/loader/OWNERS » ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'nacl/nacl_defines.gypi', 10 'nacl/nacl_defines.gypi',
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 'include_dirs': [ 218 'include_dirs': [
219 '..', 219 '..',
220 ], 220 ],
221 'defines': [ 221 'defines': [
222 '<@(nacl_defines)', 222 '<@(nacl_defines)',
223 # Allow .cc files to know if they're being compiled as part 223 # Allow .cc files to know if they're being compiled as part
224 # of nacl_helper. 224 # of nacl_helper.
225 'IN_NACL_HELPER=1', 225 'IN_NACL_HELPER=1',
226 ], 226 ],
227 'sources': [ 227 'sources': [
228 'nacl/loader/nacl_sandbox_linux.cc',
229 'nacl/loader/nonsfi/abi_conversion.cc', 228 'nacl/loader/nonsfi/abi_conversion.cc',
230 'nacl/loader/nonsfi/abi_conversion.h', 229 'nacl/loader/nonsfi/abi_conversion.h',
231 'nacl/loader/nonsfi/elf_loader.cc', 230 'nacl/loader/nonsfi/elf_loader.cc',
232 'nacl/loader/nonsfi/elf_loader.h', 231 'nacl/loader/nonsfi/elf_loader.h',
233 'nacl/loader/nonsfi/irt_basic.cc', 232 'nacl/loader/nonsfi/irt_basic.cc',
234 'nacl/loader/nonsfi/irt_clock.cc', 233 'nacl/loader/nonsfi/irt_clock.cc',
235 'nacl/loader/nonsfi/irt_fdio.cc', 234 'nacl/loader/nonsfi/irt_fdio.cc',
236 'nacl/loader/nonsfi/irt_futex.cc', 235 'nacl/loader/nonsfi/irt_futex.cc',
237 'nacl/loader/nonsfi/irt_interfaces.cc', 236 'nacl/loader/nonsfi/irt_interfaces.cc',
238 'nacl/loader/nonsfi/irt_interfaces.h', 237 'nacl/loader/nonsfi/irt_interfaces.h',
239 'nacl/loader/nonsfi/irt_memory.cc', 238 'nacl/loader/nonsfi/irt_memory.cc',
240 'nacl/loader/nonsfi/irt_ppapi.cc', 239 'nacl/loader/nonsfi/irt_ppapi.cc',
241 'nacl/loader/nonsfi/irt_random.cc', 240 'nacl/loader/nonsfi/irt_random.cc',
242 'nacl/loader/nonsfi/irt_thread.cc', 241 'nacl/loader/nonsfi/irt_thread.cc',
243 'nacl/loader/nonsfi/irt_util.h', 242 'nacl/loader/nonsfi/irt_util.h',
244 'nacl/loader/nonsfi/nonsfi_main.cc', 243 'nacl/loader/nonsfi/nonsfi_main.cc',
245 'nacl/loader/nonsfi/nonsfi_main.h', 244 'nacl/loader/nonsfi/nonsfi_main.h',
246 'nacl/loader/nonsfi/nonsfi_sandbox.cc', 245 'nacl/loader/nonsfi/nonsfi_sandbox.cc',
247 'nacl/loader/nonsfi/nonsfi_sandbox.h', 246 'nacl/loader/nonsfi/nonsfi_sandbox.h',
247 'nacl/loader/sandbox_linux/nacl_bpf_sandbox_linux.cc',
248 'nacl/loader/sandbox_linux/nacl_sandbox_linux.cc',
248 '../ppapi/nacl_irt/manifest_service.cc', 249 '../ppapi/nacl_irt/manifest_service.cc',
249 '../ppapi/nacl_irt/manifest_service.h', 250 '../ppapi/nacl_irt/manifest_service.h',
250 '../ppapi/nacl_irt/plugin_main.cc', 251 '../ppapi/nacl_irt/plugin_main.cc',
251 '../ppapi/nacl_irt/plugin_main.h', 252 '../ppapi/nacl_irt/plugin_main.h',
252 '../ppapi/nacl_irt/plugin_startup.cc', 253 '../ppapi/nacl_irt/plugin_startup.cc',
253 '../ppapi/nacl_irt/plugin_startup.h', 254 '../ppapi/nacl_irt/plugin_startup.h',
254 '../ppapi/nacl_irt/ppapi_dispatcher.cc', 255 '../ppapi/nacl_irt/ppapi_dispatcher.cc',
255 '../ppapi/nacl_irt/ppapi_dispatcher.h', 256 '../ppapi/nacl_irt/ppapi_dispatcher.h',
256 ], 257 ],
257 'dependencies': [ 258 'dependencies': [
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 ], 451 ],
451 'include_dirs': [ 452 'include_dirs': [
452 '..', 453 '..',
453 ], 454 ],
454 'dependencies': [ 455 'dependencies': [
455 '../content/content.gyp:content_common', 456 '../content/content.gyp:content_common',
456 ], 457 ],
457 }, 458 },
458 ] 459 ]
459 } 460 }
OLDNEW
« no previous file with comments | « no previous file | components/nacl/loader/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698