| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 '../../native_client/src/shared/srpc/srpc.gyp:srpc_lib', | 174 '../../native_client/src/shared/srpc/srpc.gyp:srpc_lib', |
| 159 '../../native_client/src/shared/platform/platform.gyp:platform_lib', | 175 '../../native_client/src/shared/platform/platform.gyp:platform_lib', |
| 160 '../../native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib', | 176 '../../native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib', |
| 161 '../../native_client/src/shared/gio/gio.gyp:gio_lib', | 177 '../../native_client/src/shared/gio/gio.gyp:gio_lib', |
| 162 ], | 178 ], |
| 163 }, | 179 }, |
| 164 ], | 180 ], |
| 165 }], | 181 }], |
| 166 ], | 182 ], |
| 167 } | 183 } |
| OLD | NEW |