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

Side by Side Diff: build/nacl_core_sdk.gyp

Issue 93513013: Add gyp build of sel_ldr and irt_core for ARM (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 6 years, 11 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 | no next file » | 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 Native Client Authors. All rights reserved. 1 # Copyright (c) 2012 The Native Client 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 'includes': [ 6 'includes': [
7 'common.gypi', 7 'common.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'nacl_core_sdk', 11 'target_name': 'nacl_core_sdk',
12 'type': 'none', 12 'type': 'none',
13 'dependencies': [ 13 'dependencies': [
14 '../src/untrusted/irt/irt.gyp:irt_core_nexe',
14 '../src/untrusted/minidump_generator/minidump_generator.gyp:minidump_gen erator_lib', 15 '../src/untrusted/minidump_generator/minidump_generator.gyp:minidump_gen erator_lib',
15 '../src/untrusted/nacl/nacl.gyp:nacl_dynacode_lib', 16 '../src/untrusted/nacl/nacl.gyp:nacl_dynacode_lib',
16 '../src/untrusted/nacl/nacl.gyp:nacl_exception_lib', 17 '../src/untrusted/nacl/nacl.gyp:nacl_exception_lib',
17 '../src/untrusted/nacl/nacl.gyp:nacl_lib', 18 '../src/untrusted/nacl/nacl.gyp:nacl_lib',
18 '../src/untrusted/nacl/nacl.gyp:nacl_list_mappings_lib', 19 '../src/untrusted/nacl/nacl.gyp:nacl_list_mappings_lib',
19 '../src/untrusted/nosys/nosys.gyp:nosys_lib', 20 '../src/untrusted/nosys/nosys.gyp:nosys_lib',
20 '../src/untrusted/pthread/pthread.gyp:pthread_lib', 21 '../src/untrusted/pthread/pthread.gyp:pthread_lib',
21 ], 22 ],
22 'conditions': [ 23 'conditions': [
24 ['(target_arch!="arm" and target_arch!="mipsel") or OS=="linux"', {
25 # sel_ldr is not buildable for arm, except on linux.
26 'dependencies': [
27 '../src/trusted/service_runtime/service_runtime.gyp:sel_ldr',
28 ],
29 }],
23 ['target_arch!="arm" and target_arch!="mipsel"', { 30 ['target_arch!="arm" and target_arch!="mipsel"', {
24 'dependencies': [ 31 'dependencies': [
25 # sel_ldr and irt are host-only and not needed when building the
26 # arm and mips components of the SDK.
27 '../src/untrusted/irt/irt.gyp:irt_core_nexe',
28 '../src/trusted/service_runtime/service_runtime.gyp:sel_ldr',
29 # these libraries don't currently exist on arm and mips 32 # these libraries don't currently exist on arm and mips
30 '../src/untrusted/valgrind/valgrind.gyp:dynamic_annotations_lib', 33 '../src/untrusted/valgrind/valgrind.gyp:dynamic_annotations_lib',
31 '../src/untrusted/valgrind/valgrind.gyp:valgrind_lib', 34 '../src/untrusted/valgrind/valgrind.gyp:valgrind_lib',
32 ], 35 ],
33 'copies': [ 36 'copies': [
34 { 37 {
35 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86 _newlib/x86_64-nacl/lib32', 38 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86 _newlib/x86_64-nacl/lib32',
36 'files': [ 39 'files': [
37 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crti.o', 40 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crti.o',
38 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crtn.o', 41 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crtn.o',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libdynamic_annotation s.a', 76 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libdynamic_annotation s.a',
74 ], 77 ],
75 }, 78 },
76 ], 79 ],
77 }], 80 }],
78 ], 81 ],
79 }, 82 },
80 ], 83 ],
81 } 84 }
82 85
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698