| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'includes': [ | 6 'includes': [ |
| 7 '../../native_client/build/common.gypi', | 7 '../../native_client/build/common.gypi', |
| 8 ], | 8 ], |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['disable_nacl==0 and disable_nacl_untrusted==0', { | 10 ['disable_nacl==0 and disable_nacl_untrusted==0', { |
| 11 'targets': [ | 11 'targets': [ |
| 12 { | 12 { |
| 13 'target_name': 'ppapi_lib', | 13 'target_name': 'ppapi_lib', |
| 14 'type': 'none', | 14 'type': 'none', |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 '../../native_client/src/untrusted/pthread/pthread.gyp:pthread_lib'
, | 16 '../../native_client/src/untrusted/pthread/pthread.gyp:pthread_lib'
, |
| 17 '../../native_client/src/untrusted/irt_stub/irt_stub.gyp:ppapi_stub
_lib', | 17 '../../native_client/src/untrusted/irt_stub/irt_stub.gyp:ppapi_stub
_lib', |
| 18 ], | 18 ], |
| 19 # Here we copy linker scripts out of the Native Client repository. |
| 20 # These are source, not build artifacts. |
| 19 'copies': [ | 21 'copies': [ |
| 20 { | 22 { |
| 21 'destination': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32', | 23 'destination': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32', |
| 22 'files': [ | 24 'files': [ |
| 23 '<(DEPTH)/native_client/src/untrusted/irt_stub/libppapi.a', | 25 '<(DEPTH)/native_client/src/untrusted/irt_stub/libppapi.a', |
| 24 ], | 26 ], |
| 25 }, | 27 }, |
| 26 { | 28 { |
| 27 'destination': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64', | 29 'destination': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64', |
| 28 'files': [ | 30 'files': [ |
| 29 '<(DEPTH)/native_client/src/untrusted/irt_stub/libppapi.a', | 31 '<(DEPTH)/native_client/src/untrusted/irt_stub/libppapi.a', |
| 30 ], | 32 ], |
| 31 }, | 33 }, |
| 32 { | 34 { |
| 35 'destination': '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32', |
| 36 'files': [ |
| 37 '<(DEPTH)/native_client/src/untrusted/irt_stub/libppapi.a', |
| 38 '<(DEPTH)/native_client/src/untrusted/irt_stub/libppapi.so', |
| 39 ], |
| 40 }, |
| 41 { |
| 42 'destination': '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64', |
| 43 'files': [ |
| 44 '<(DEPTH)/native_client/src/untrusted/irt_stub/libppapi.a', |
| 45 '<(DEPTH)/native_client/src/untrusted/irt_stub/libppapi.so', |
| 46 ], |
| 47 }, |
| 48 { |
| 33 'destination': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm', | 49 'destination': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm', |
| 34 'files': [ | 50 'files': [ |
| 35 '<(DEPTH)/native_client/src/untrusted/irt_stub/libppapi.a', | 51 '<(DEPTH)/native_client/src/untrusted/irt_stub/libppapi.a', |
| 36 ], | 52 ], |
| 37 }, | 53 }, |
| 38 ], | 54 ], |
| 39 }, | 55 }, |
| 40 { | 56 { |
| 41 'target_name': 'nacl_irt', | 57 'target_name': 'nacl_irt', |
| 42 'type': 'none', | 58 'type': 'none', |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 '../../native_client/src/shared/srpc/srpc.gyp:srpc_lib', | 138 '../../native_client/src/shared/srpc/srpc.gyp:srpc_lib', |
| 123 '../../native_client/src/shared/platform/platform.gyp:platform_lib', | 139 '../../native_client/src/shared/platform/platform.gyp:platform_lib', |
| 124 '../../native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib', | 140 '../../native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib', |
| 125 '../../native_client/src/shared/gio/gio.gyp:gio_lib', | 141 '../../native_client/src/shared/gio/gio.gyp:gio_lib', |
| 126 ], | 142 ], |
| 127 }, | 143 }, |
| 128 ], | 144 ], |
| 129 }], | 145 }], |
| 130 ], | 146 ], |
| 131 } | 147 } |
| OLD | NEW |