| 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 ###################################################################### |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 'build_glibc': 0, | 50 'build_glibc': 0, |
| 51 'build_newlib': 1, | 51 'build_newlib': 1, |
| 52 'build_pnacl_newlib': 0, | 52 'build_pnacl_newlib': 0, |
| 53 }, | 53 }, |
| 54 'sources': [ | 54 'sources': [ |
| 55 'tests/threads/simple_thread_test.c', | 55 'tests/threads/simple_thread_test.c', |
| 56 ], | 56 ], |
| 57 }, | 57 }, |
| 58 ], | 58 ], |
| 59 'conditions': [ | 59 'conditions': [ |
| 60 ['target_arch!="arm"', { | 60 ['target_arch!="arm" and target_arch!="mipsel"', { |
| 61 'targets': [ | 61 'targets': [ |
| 62 # Only build the tests on arm, but don't try to run them | 62 # Only build the tests on arm and mips, but don't try to run them |
| 63 { | 63 { |
| 64 'target_name': 'test_hello_world_nexe', | 64 'target_name': 'test_hello_world_nexe', |
| 65 'type': 'none', | 65 'type': 'none', |
| 66 'dependencies': [ | 66 'dependencies': [ |
| 67 'hello_world_nexe', | 67 'hello_world_nexe', |
| 68 'src/trusted/service_runtime/service_runtime.gyp:sel_ldr', | 68 'src/trusted/service_runtime/service_runtime.gyp:sel_ldr', |
| 69 ], | 69 ], |
| 70 'variables': { | 70 'variables': { |
| 71 'arch': '--arch=<(target_arch)', | 71 'arch': '--arch=<(target_arch)', |
| 72 'name': '--name=hello_world', | 72 'name': '--name=hello_world', |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 '<(path)/hack', | 164 '<(path)/hack', |
| 165 '<(tools)' | 165 '<(tools)' |
| 166 ], | 166 ], |
| 167 }, | 167 }, |
| 168 ], | 168 ], |
| 169 }, | 169 }, |
| 170 ], | 170 ], |
| 171 }], | 171 }], |
| 172 ], | 172 ], |
| 173 } | 173 } |
| OLD | NEW |