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

Side by Side Diff: components/nacl.gyp

Issue 230413002: NonSFI NaCl: Plumb Exception IRT enough for breakpad. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: only run the test on x86 linux, other architectures are not supported. Created 6 years, 8 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 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 'IN_NACL_HELPER=1', 223 'IN_NACL_HELPER=1',
224 ], 224 ],
225 'sources': [ 225 'sources': [
226 'nacl/loader/nacl_sandbox_linux.cc', 226 'nacl/loader/nacl_sandbox_linux.cc',
227 'nacl/loader/nonsfi/abi_conversion.cc', 227 'nacl/loader/nonsfi/abi_conversion.cc',
228 'nacl/loader/nonsfi/abi_conversion.h', 228 'nacl/loader/nonsfi/abi_conversion.h',
229 'nacl/loader/nonsfi/elf_loader.cc', 229 'nacl/loader/nonsfi/elf_loader.cc',
230 'nacl/loader/nonsfi/elf_loader.h', 230 'nacl/loader/nonsfi/elf_loader.h',
231 'nacl/loader/nonsfi/irt_basic.cc', 231 'nacl/loader/nonsfi/irt_basic.cc',
232 'nacl/loader/nonsfi/irt_clock.cc', 232 'nacl/loader/nonsfi/irt_clock.cc',
233 'nacl/loader/nonsfi/irt_exception_handling.cc',
233 'nacl/loader/nonsfi/irt_fdio.cc', 234 'nacl/loader/nonsfi/irt_fdio.cc',
234 'nacl/loader/nonsfi/irt_futex.cc', 235 'nacl/loader/nonsfi/irt_futex.cc',
235 'nacl/loader/nonsfi/irt_interfaces.cc', 236 'nacl/loader/nonsfi/irt_interfaces.cc',
236 'nacl/loader/nonsfi/irt_interfaces.h', 237 'nacl/loader/nonsfi/irt_interfaces.h',
237 'nacl/loader/nonsfi/irt_memory.cc', 238 'nacl/loader/nonsfi/irt_memory.cc',
238 'nacl/loader/nonsfi/irt_ppapi.cc', 239 'nacl/loader/nonsfi/irt_ppapi.cc',
239 'nacl/loader/nonsfi/irt_random.cc', 240 'nacl/loader/nonsfi/irt_random.cc',
240 'nacl/loader/nonsfi/irt_thread.cc', 241 'nacl/loader/nonsfi/irt_thread.cc',
241 'nacl/loader/nonsfi/irt_util.h', 242 'nacl/loader/nonsfi/irt_util.h',
242 'nacl/loader/nonsfi/nonsfi_main.cc', 243 'nacl/loader/nonsfi/nonsfi_main.cc',
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 ], 449 ],
449 'include_dirs': [ 450 'include_dirs': [
450 '..', 451 '..',
451 ], 452 ],
452 'dependencies': [ 453 'dependencies': [
453 '../content/content.gyp:content_common', 454 '../content/content.gyp:content_common',
454 ], 455 ],
455 }, 456 },
456 ] 457 ]
457 } 458 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698