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!=1', { | 10 ['disable_nacl!=1', { |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 '-lsrpc', | 51 '-lsrpc', |
52 '-limc_syscalls', | 52 '-limc_syscalls', |
53 '-lplatform', | 53 '-lplatform', |
54 '-lgio', | 54 '-lgio', |
55 '-lm', | 55 '-lm', |
56 '-Wl,--section-start,.rodata=<(NACL_IRT_DATA_START)', | 56 '-Wl,--section-start,.rodata=<(NACL_IRT_DATA_START)', |
57 '-Wl,-Ttext-segment=<(NACL_IRT_TEXT_START)', | 57 '-Wl,-Ttext-segment=<(NACL_IRT_TEXT_START)', |
58 ], | 58 ], |
59 'sources': [ | 59 'sources': [ |
60 ], | 60 ], |
| 61 'extra_args': [ |
| 62 '--strip-debug', |
| 63 ], |
61 'extra_deps64': [ | 64 'extra_deps64': [ |
62 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libppruntime.a', | 65 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libppruntime.a', |
63 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libirt_browser.a', | 66 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libirt_browser.a', |
64 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libsrpc.a', | 67 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libsrpc.a', |
65 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libplatform.a', | 68 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libplatform.a', |
66 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libimc_syscalls.a', | 69 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libimc_syscalls.a', |
67 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libgio.a', | 70 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libgio.a', |
68 ], | 71 ], |
69 'extra_deps32': [ | 72 'extra_deps32': [ |
70 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib32/libppruntime.a', | 73 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib32/libppruntime.a', |
(...skipping 10 matching lines...) Expand all Loading... |
81 '../../native_client/src/shared/srpc/srpc.gyp:srpc_lib', | 84 '../../native_client/src/shared/srpc/srpc.gyp:srpc_lib', |
82 '../../native_client/src/shared/platform/platform.gyp:platform_lib', | 85 '../../native_client/src/shared/platform/platform.gyp:platform_lib', |
83 '../../native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib', | 86 '../../native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib', |
84 '../../native_client/src/shared/gio/gio.gyp:gio_lib', | 87 '../../native_client/src/shared/gio/gio.gyp:gio_lib', |
85 ], | 88 ], |
86 }, | 89 }, |
87 ], | 90 ], |
88 }], | 91 }], |
89 ], | 92 ], |
90 } | 93 } |
OLD | NEW |