| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 '../../../build/common.gypi', | 7 '../../../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'variables': { | 9 'variables': { |
| 10 'irt_sources': [ | 10 'irt_sources': [ |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 ], | 53 ], |
| 54 }, | 54 }, |
| 55 'targets': [ | 55 'targets': [ |
| 56 { | 56 { |
| 57 'target_name': 'irt_core_nexe', | 57 'target_name': 'irt_core_nexe', |
| 58 'type': 'none', | 58 'type': 'none', |
| 59 'variables': { | 59 'variables': { |
| 60 'nexe_target': 'irt_core', | 60 'nexe_target': 'irt_core', |
| 61 'build_glibc': 0, | 61 'build_glibc': 0, |
| 62 'build_newlib': 1, | 62 'build_newlib': 1, |
| 63 'extra_args': [ |
| 64 '--strip-all', |
| 65 ], |
| 63 }, | 66 }, |
| 64 'sources': ['<@(irt_sources)', '<@(irt_nonbrowser)'], | 67 'sources': ['<@(irt_sources)', '<@(irt_nonbrowser)'], |
| 65 'link_flags': [ | 68 'link_flags': [ |
| 66 '-lsrpc', | 69 '-lsrpc', |
| 67 '-limc_syscalls', | 70 '-limc_syscalls', |
| 68 '-lplatform', | 71 '-lplatform', |
| 69 '-lgio', | 72 '-lgio', |
| 70 '-lm', | 73 '-lm', |
| 71 '-Wl,<(NACL_RODATA_FLAG)=<(NACL_IRT_DATA_START)', | 74 '-Wl,<(NACL_RODATA_FLAG)=<(NACL_IRT_DATA_START)', |
| 72 '-Wl,-Ttext-segment=<(NACL_IRT_TEXT_START)', | 75 '-Wl,-Ttext-segment=<(NACL_IRT_TEXT_START)', |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 'sources': [ 'aeabi_read_tp.S' ], | 112 'sources': [ 'aeabi_read_tp.S' ], |
| 110 }], | 113 }], |
| 111 ], | 114 ], |
| 112 'dependencies': [ | 115 'dependencies': [ |
| 113 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 116 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 114 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', | 117 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', |
| 115 ], | 118 ], |
| 116 }, | 119 }, |
| 117 ], | 120 ], |
| 118 } | 121 } |
| OLD | NEW |