| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'includes': [ |
| 7 'common.gypi', |
| 8 ], |
| 9 'targets': [ |
| 10 { |
| 11 'target_name': 'nacl_core_sdk', |
| 12 'type': 'none', |
| 13 'dependencies': [ |
| 14 '../src/shared/gio/gio.gyp:gio_lib', |
| 15 '../src/shared/platform/platform.gyp:platform_lib', |
| 16 '../src/shared/srpc/srpc.gyp:srpc_lib', |
| 17 '../src/trusted/service_runtime/service_runtime.gyp:sel_ldr', |
| 18 '../src/untrusted/irt/irt.gyp:irt_core_nexe', |
| 19 '../src/untrusted/nacl/nacl.gyp:imc_syscalls_lib', |
| 20 '../src/untrusted/nacl/nacl.gyp:nacl_dynacode_lib', |
| 21 '../src/untrusted/nacl/nacl.gyp:nacl_lib', |
| 22 '../src/untrusted/nosys/nosys.gyp:nosys_lib', |
| 23 '../src/untrusted/pthread/pthread.gyp:pthread_lib', |
| 24 ], |
| 25 'conditions': [ |
| 26 # these libraries don't currently exist on arm |
| 27 ['target_arch!="arm"', { |
| 28 'dependencies': [ |
| 29 '../src/shared/imc/imc.gyp:imc_lib', |
| 30 '../src/trusted/weak_ref/weak_ref.gyp:weak_ref_lib', |
| 31 '../src/untrusted/valgrind/valgrind.gyp:dynamic_annotations_lib', |
| 32 '../src/untrusted/valgrind/valgrind.gyp:valgrind_lib', |
| 33 ], |
| 34 }], |
| 35 ], |
| 36 }, |
| 37 ], |
| 38 } |
| 39 |
| OLD | NEW |