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

Side by Side Diff: tests.gyp

Issue 24227003: [MIPS] Add support to gyp files to build Native Client inside of Chromium (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Upload again. Created 7 years, 2 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
« no previous file with comments | « src/untrusted/nacl/nacl.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 ######################################################################
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « src/untrusted/nacl/nacl.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698