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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 # For MessageLoopForIO based on libevent. | 89 # For MessageLoopForIO based on libevent. |
90 'message_loop/message_pump_libevent.cc', | 90 'message_loop/message_pump_libevent.cc', |
91 'message_loop/message_pump_libevent.h', | 91 'message_loop/message_pump_libevent.h', |
92 | 92 |
93 # For UnixDomainSocket::SendMsg and RecvMsg. | 93 # For UnixDomainSocket::SendMsg and RecvMsg. |
94 'posix/unix_domain_socket_linux.cc', | 94 'posix/unix_domain_socket_linux.cc', |
95 | 95 |
96 # For GetKnownDeadTerminationStatus and GetTerminationStatus. | 96 # For GetKnownDeadTerminationStatus and GetTerminationStatus. |
97 'process/kill_posix.cc', | 97 'process/kill_posix.cc', |
98 | 98 |
| 99 # For ForkWithFlags. |
| 100 'process/launch.h', |
| 101 'process/launch_posix.cc', |
| 102 |
99 # Unlike libbase_nacl, for Non-SFI build, we need to use | 103 # Unlike libbase_nacl, for Non-SFI build, we need to use |
100 # rand_util_posix for random implementation, instead of | 104 # rand_util_posix for random implementation, instead of |
101 # rand_util_nacl.cc, which is based on IRT. rand_util_nacl.cc is | 105 # rand_util_nacl.cc, which is based on IRT. rand_util_nacl.cc is |
102 # excluded below. | 106 # excluded below. |
103 'rand_util_posix.cc', | 107 'rand_util_posix.cc', |
104 | 108 |
105 # For CancelableSyncSocket. | 109 # For CancelableSyncSocket. |
106 'sync_socket_nacl.cc', | 110 'sync_socket_nacl.cc', |
107 ], | 111 ], |
108 }, | 112 }, |
(...skipping 25 matching lines...) Expand all Loading... |
134 }, | 138 }, |
135 'dependencies': [ | 139 'dependencies': [ |
136 'base_nacl_nonsfi', | 140 'base_nacl_nonsfi', |
137 '../testing/gtest_nacl.gyp:gtest_nacl', | 141 '../testing/gtest_nacl.gyp:gtest_nacl', |
138 ], | 142 ], |
139 }, | 143 }, |
140 ], | 144 ], |
141 }], | 145 }], |
142 ], | 146 ], |
143 } | 147 } |
OLD | NEW |