| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 'sel_ldr_standard.c', | 65 'sel_ldr_standard.c', |
| 66 'sel_ldr_thread_interface.c', | 66 'sel_ldr_thread_interface.c', |
| 67 # TODO(mseaborn): Move sel_main_chrome.c to the | 67 # TODO(mseaborn): Move sel_main_chrome.c to the |
| 68 # "sel_main_chrome" library once Chromium is changed to | 68 # "sel_main_chrome" library once Chromium is changed to |
| 69 # depend on that rather than on "sel". | 69 # depend on that rather than on "sel". |
| 70 'sel_main_chrome.c', | 70 'sel_main_chrome.c', |
| 71 'sel_mem.c', | 71 'sel_mem.c', |
| 72 'sel_qualify.c', | 72 'sel_qualify.c', |
| 73 'sel_validate_image.c', | 73 'sel_validate_image.c', |
| 74 'sys_exception.c', | 74 'sys_exception.c', |
| 75 'sys_filename.c', |
| 75 'sys_imc.c', | 76 'sys_imc.c', |
| 76 'sys_list_mappings.c', | 77 'sys_list_mappings.c', |
| 77 'thread_suspension_common.c', | 78 'thread_suspension_common.c', |
| 78 'thread_suspension_unwind.c', | 79 'thread_suspension_unwind.c', |
| 79 ], | 80 ], |
| 80 'include_dirs': [ | 81 'include_dirs': [ |
| 81 # For generated header files from the x86-64 validator, | 82 # For generated header files from the x86-64 validator, |
| 82 # e.g. nacl_disallows.h. | 83 # e.g. nacl_disallows.h. |
| 83 '<(SHARED_INTERMEDIATE_DIR)', | 84 '<(SHARED_INTERMEDIATE_DIR)', |
| 84 ], | 85 ], |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 }], | 441 }], |
| 441 ], | 442 ], |
| 442 'sources': [ | 443 'sources': [ |
| 443 'linux/nacl_signal.c', | 444 'linux/nacl_signal.c', |
| 444 ], | 445 ], |
| 445 }, | 446 }, |
| 446 ], | 447 ], |
| 447 }], | 448 }], |
| 448 ], | 449 ], |
| 449 } | 450 } |
| OLD | NEW |