Chromium Code Reviews| Index: build/all.gyp |
| =================================================================== |
| --- build/all.gyp (revision 8056) |
| +++ build/all.gyp (working copy) |
| @@ -23,15 +23,16 @@ |
| # events. See http://code.google.com/p/nativeclient/issues/detail?id=2066 |
| # '../src/trusted/sel_universal/sel_universal.gyp:*', |
| '../src/trusted/service_runtime/service_runtime.gyp:*', |
| + '../src/untrusted/irt/irt.gyp:irt_core_nexe', |
| + '../src/untrusted/irt_stub/irt_stub.gyp:*', |
| + '../src/untrusted/nacl/nacl.gyp:*', |
| + '../src/untrusted/nosys/nosys.gyp:*', |
| + '../src/untrusted/pthread/pthread.gyp:*', |
| ], |
| 'conditions': [ |
| + # No tests on ARM yet. |
|
Mark Seaborn
2012/03/22 17:13:21
Is there a reason why tests.gyp can't be enabled f
Nikolay
2012/03/23 11:35:20
Two reasons why I did it:
- ARM tests have to be
|
| ['target_arch!="arm"', { |
| 'dependencies': [ |
| - '../src/untrusted/irt/irt.gyp:irt_core_nexe', |
| - '../src/untrusted/irt_stub/irt_stub.gyp:*', |
| - '../src/untrusted/nacl/nacl.gyp:*', |
| - '../src/untrusted/nosys/nosys.gyp:*', |
| - '../src/untrusted/pthread/pthread.gyp:*', |
| '../tests.gyp:*', |
| ], |
| }], |