Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: src/untrusted/irt/irt.gyp

Issue 14713006: Retain the unstripped nexe at a predictable location. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: add more stripping Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/build_nexe.py ('k') | tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « build/build_nexe.py ('k') | tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698