| OLD | NEW |
| 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', | |
| 15 '../src/untrusted/minidump_generator/minidump_generator.gyp:minidump_gen
erator_lib', | 14 '../src/untrusted/minidump_generator/minidump_generator.gyp:minidump_gen
erator_lib', |
| 16 '../src/untrusted/nacl/nacl.gyp:nacl_dynacode_lib', | 15 '../src/untrusted/nacl/nacl.gyp:nacl_dynacode_lib', |
| 17 '../src/untrusted/nacl/nacl.gyp:nacl_exception_lib', | 16 '../src/untrusted/nacl/nacl.gyp:nacl_exception_lib', |
| 18 '../src/untrusted/nacl/nacl.gyp:nacl_lib', | 17 '../src/untrusted/nacl/nacl.gyp:nacl_lib', |
| 19 '../src/untrusted/nacl/nacl.gyp:nacl_list_mappings_lib', | 18 '../src/untrusted/nacl/nacl.gyp:nacl_list_mappings_lib', |
| 20 '../src/untrusted/nosys/nosys.gyp:nosys_lib', | 19 '../src/untrusted/nosys/nosys.gyp:nosys_lib', |
| 21 '../src/untrusted/pthread/pthread.gyp:pthread_lib', | 20 '../src/untrusted/pthread/pthread.gyp:pthread_lib', |
| 22 ], | 21 ], |
| 23 'conditions': [ | 22 '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 }], | |
| 30 ['target_arch!="arm" and target_arch!="mipsel"', { | 23 ['target_arch!="arm" and target_arch!="mipsel"', { |
| 31 'dependencies': [ | 24 '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', |
| 32 # these libraries don't currently exist on arm and mips | 29 # these libraries don't currently exist on arm and mips |
| 33 '../src/untrusted/valgrind/valgrind.gyp:dynamic_annotations_lib', | 30 '../src/untrusted/valgrind/valgrind.gyp:dynamic_annotations_lib', |
| 34 '../src/untrusted/valgrind/valgrind.gyp:valgrind_lib', | 31 '../src/untrusted/valgrind/valgrind.gyp:valgrind_lib', |
| 35 ], | 32 ], |
| 36 'copies': [ | 33 'copies': [ |
| 37 { | 34 { |
| 38 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86
_newlib/x86_64-nacl/lib32', | 35 'destination': '<(SHARED_INTERMEDIATE_DIR)/sdk/toolchain/<(OS)_x86
_newlib/x86_64-nacl/lib32', |
| 39 'files': [ | 36 'files': [ |
| 40 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crti.o', | 37 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crti.o', |
| 41 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crtn.o', | 38 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/crtn.o', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libdynamic_annotation
s.a', | 73 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libdynamic_annotation
s.a', |
| 77 ], | 74 ], |
| 78 }, | 75 }, |
| 79 ], | 76 ], |
| 80 }], | 77 }], |
| 81 ], | 78 ], |
| 82 }, | 79 }, |
| 83 ], | 80 ], |
| 84 } | 81 } |
| 85 | 82 |
| OLD | NEW |