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

Side by Side Diff: components/nacl.gyp

Issue 100373005: Initial implementation of Bare Metal Mode for NaCl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 }], 205 }],
206 ['os_posix == 1 and OS != "mac"', { 206 ['os_posix == 1 and OS != "mac"', {
207 'conditions': [ 207 'conditions': [
208 ['linux_use_tcmalloc==1', { 208 ['linux_use_tcmalloc==1', {
209 'dependencies': [ 209 'dependencies': [
210 '../base/allocator/allocator.gyp:allocator', 210 '../base/allocator/allocator.gyp:allocator',
211 ], 211 ],
212 }], 212 }],
213 ], 213 ],
214 }], 214 }],
215 ['target_arch == "ia32"', {
Mark Seaborn 2013/12/06 21:42:37 Can we enable this for all architectures, please?
hidehiko 2013/12/09 07:43:39 I see. Done.
216 'sources': [
217 # Non SFI mode is currently experimental and available
218 # only for 32-bits linux environment.
219 # TODO(hidehiko): Support it on arm.
220 'nacl/loader/nonsfi/nonsfi_error_code.h',
221 'nacl/loader/nonsfi/nonsfi_main.cc',
222 'nacl/loader/nonsfi/nonsfi_main.h',
223 'nacl/loader/nonsfi/elf_util.cc',
224 'nacl/loader/nonsfi/elf_util.h',
225 ],
226 }]
215 ], 227 ],
216 'cflags': ['-fPIE'], 228 'cflags': ['-fPIE'],
217 'link_settings': { 229 'link_settings': {
218 'ldflags': ['-pie'], 230 'ldflags': ['-pie'],
219 }, 231 },
220 }, 232 },
221 ], 233 ],
222 }], 234 }],
223 ['OS=="win" and target_arch=="ia32"', { 235 ['OS=="win" and target_arch=="ia32"', {
224 'targets': [ 236 'targets': [
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 'nacl/common/nacl_types.h', 370 'nacl/common/nacl_types.h',
359 'nacl/common/pnacl_types.cc', 371 'nacl/common/pnacl_types.cc',
360 'nacl/common/pnacl_types.h', 372 'nacl/common/pnacl_types.h',
361 ], 373 ],
362 'include_dirs': [ 374 'include_dirs': [
363 '..', 375 '..',
364 ], 376 ],
365 }, 377 },
366 ] 378 ]
367 } 379 }
OLDNEW
« no previous file with comments | « no previous file | components/nacl/loader/nacl_listener.cc » ('j') | components/nacl/loader/nonsfi/elf_util.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698