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

Side by Side Diff: tests.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 | « src/untrusted/irt/irt.gyp ('k') | no next file » | 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) 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 ###################################################################### 6 ######################################################################
7 'includes': [ 7 'includes': [
8 'build/common.gypi', 8 'build/common.gypi',
9 ], 9 ],
10 ###################################################################### 10 ######################################################################
11 'targets': [ 11 'targets': [
12 { 12 {
13 'target_name': 'hello_world_nexe', 13 'target_name': 'hello_world_nexe',
14 'type': 'none', 14 'type': 'none',
15 'dependencies': [ 15 'dependencies': [
16 'tools.gyp:prep_toolchain', 16 'tools.gyp:prep_toolchain',
17 'src/untrusted/nacl/nacl.gyp:nacl_lib', 17 'src/untrusted/nacl/nacl.gyp:nacl_lib',
18 'src/untrusted/irt/irt.gyp:irt_core_nexe' 18 'src/untrusted/irt/irt.gyp:irt_core_nexe'
19 ], 19 ],
20 'variables': { 20 'variables': {
21 'nexe_target': 'hello_world', 21 'nexe_target': 'hello_world',
22 'build_glibc': 0, 22 'build_glibc': 0,
23 'build_newlib': 1, 23 'build_newlib': 1,
24 'build_pnacl_newlib': 1, 24 'build_pnacl_newlib': 1,
25 'extra_args': [ 25 'extra_args': [
26 '--strip-debug', 26 '--strip-all',
27 ], 27 ],
28 }, 28 },
29 'sources': [ 29 'sources': [
30 'tests/hello_world/hello_world.c', 30 'tests/hello_world/hello_world.c',
31 ], 31 ],
32 }, 32 },
33 ], 33 ],
34 'conditions': [ 34 'conditions': [
35 # Only build the tests on arm, but don't try to run them 35 # Only build the tests on arm, but don't try to run them
36 ['target_arch!="arm"', { 36 ['target_arch!="arm"', {
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 '<(path)/hack', 140 '<(path)/hack',
141 '<(tools)' 141 '<(tools)'
142 ], 142 ],
143 }, 143 },
144 ], 144 ],
145 }, 145 },
146 ], 146 ],
147 }], 147 }],
148 ], 148 ],
149 } 149 }
OLDNEW
« no previous file with comments | « src/untrusted/irt/irt.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698