| 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 ###################################################################### | 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 Loading... |
| 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 } |
| OLD | NEW |