| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 # base.gypi must be included before common_untrusted.gypi. | 10 # base.gypi must be included before common_untrusted.gypi. |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 # For MessageLoopForIO based on libevent. | 88 # For MessageLoopForIO based on libevent. |
| 89 'message_loop/message_pump_libevent.cc', | 89 'message_loop/message_pump_libevent.cc', |
| 90 'message_loop/message_pump_libevent.h', | 90 'message_loop/message_pump_libevent.h', |
| 91 | 91 |
| 92 # For UnixDomainSocket::SendMsg and RecvMsg. | 92 # For UnixDomainSocket::SendMsg and RecvMsg. |
| 93 'posix/unix_domain_socket_linux.cc', | 93 'posix/unix_domain_socket_linux.cc', |
| 94 | 94 |
| 95 # For GetKnownDeadTerminationStatus and GetTerminationStatus. | 95 # For GetKnownDeadTerminationStatus and GetTerminationStatus. |
| 96 'process/kill_posix.cc', | 96 'process/kill_posix.cc', |
| 97 | 97 |
| 98 # For ForkWithFlags. |
| 99 'process/launch_posix.cc', |
| 100 |
| 98 # Unlike libbase_nacl, for Non-SFI build, we need to use | 101 # Unlike libbase_nacl, for Non-SFI build, we need to use |
| 99 # rand_util_posix for random implementation, instead of | 102 # rand_util_posix for random implementation, instead of |
| 100 # rand_util_nacl.cc, which is based on IRT. rand_util_nacl.cc is | 103 # rand_util_nacl.cc, which is based on IRT. rand_util_nacl.cc is |
| 101 # excluded below. | 104 # excluded below. |
| 102 'rand_util_posix.cc', | 105 'rand_util_posix.cc', |
| 103 | 106 |
| 104 # For CancelableSyncSocket. | 107 # For CancelableSyncSocket. |
| 105 'sync_socket_nacl.cc', | 108 'sync_socket_nacl.cc', |
| 106 ], | 109 ], |
| 107 }, | 110 }, |
| 108 'sources!': [ | 111 'sources!': [ |
| 109 'rand_util_nacl.cc', | 112 'rand_util_nacl.cc', |
| 110 ], | 113 ], |
| 111 'dependencies': [ | 114 'dependencies': [ |
| 112 '../third_party/libevent/libevent_nacl_nonsfi.gyp:event_nacl_nonsfi'
, | 115 '../third_party/libevent/libevent_nacl_nonsfi.gyp:event_nacl_nonsfi'
, |
| 113 ], | 116 ], |
| 114 }, | 117 }, |
| 115 ], | 118 ], |
| 116 }], | 119 }], |
| 117 ], | 120 ], |
| 118 } | 121 } |
| OLD | NEW |