Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- gyp -*- | 1 # -*- gyp -*- |
| 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 { | 6 { |
| 7 'variables': { | 7 'variables': { |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 ['OS=="linux"', { | 9 ['OS=="linux"', { |
| 10 'syscall_handler': [ | 10 'syscall_handler': [ |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 58 'name_service/name_service.c', | 58 'name_service/name_service.c', |
| 59 'sel_addrspace.c', | 59 'sel_addrspace.c', |
| 60 'sel_ldr.c', | 60 'sel_ldr.c', |
| 61 'sel_ldr_standard.c', | 61 'sel_ldr_standard.c', |
| 62 'sel_ldr_thread_interface.c', | 62 'sel_ldr_thread_interface.c', |
| 63 'sel_main_chrome.c', | 63 'sel_main_chrome.c', |
| 64 'sel_mem.c', | 64 'sel_mem.c', |
| 65 'sel_qualify.c', | 65 'sel_qualify.c', |
| 66 'sel_validate_image.c', | 66 'sel_validate_image.c', |
| 67 'thread_suspension_common.c', | 67 'thread_suspension_common.c', |
| 68 '<(DEPTH)/native_client/src/trusted/validator/validator_init.c', | |
|
Mark Seaborn
2012/06/14 20:11:56
This is messy. service_runtime.gyp shouldn't be b
pasko-google - do not use
2012/06/17 14:46:45
I agree this looks different than inclusion of oth
Mark Seaborn
2012/06/20 20:02:26
Creating a new, arch-neutral Gyp file, src/validat
pasko-google - do not use
2012/06/21 15:24:18
I added the trusted/validator/validator.gyp.
Thoug
| |
| 68 ], | 69 ], |
| 69 'include_dirs': [ | 70 'include_dirs': [ |
| 70 # For generated header files from the x86-64 validator, | 71 # For generated header files from the x86-64 validator, |
| 71 # e.g. nacl_disallows.h. | 72 # e.g. nacl_disallows.h. |
| 72 '<(SHARED_INTERMEDIATE_DIR)', | 73 '<(SHARED_INTERMEDIATE_DIR)', |
| 73 ], | 74 ], |
| 74 'sources!': [ | 75 'sources!': [ |
| 75 '<(syscall_handler)', | 76 '<(syscall_handler)', |
| 76 ], | 77 ], |
| 77 'actions': [ | 78 'actions': [ |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 404 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualif y.gyp:platform_qual_lib64', | 405 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualif y.gyp:platform_qual_lib64', |
| 405 ], | 406 ], |
| 406 'sources': [ | 407 'sources': [ |
| 407 'sel_main_chrome_test.c', | 408 'sel_main_chrome_test.c', |
| 408 ], | 409 ], |
| 409 }, | 410 }, |
| 410 ], | 411 ], |
| 411 }], | 412 }], |
| 412 ] | 413 ] |
| 413 } | 414 } |
| OLD | NEW |