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 'conditions': [ | 7 'conditions': [ |
8 ['OS=="linux"', { | 8 ['OS=="linux"', { |
9 'compile_suid_client': 1, | 9 'compile_suid_client': 1, |
10 'compile_credentials': 1, | 10 'compile_credentials': 1, |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 'services/syscall_wrappers.h', | 227 'services/syscall_wrappers.h', |
228 'services/thread_helpers.cc', | 228 'services/thread_helpers.cc', |
229 'services/thread_helpers.h', | 229 'services/thread_helpers.h', |
230 'services/yama.cc', | 230 'services/yama.cc', |
231 'services/yama.h', | 231 'services/yama.h', |
232 'syscall_broker/broker_channel.cc', | 232 'syscall_broker/broker_channel.cc', |
233 'syscall_broker/broker_channel.h', | 233 'syscall_broker/broker_channel.h', |
234 'syscall_broker/broker_client.cc', | 234 'syscall_broker/broker_client.cc', |
235 'syscall_broker/broker_client.h', | 235 'syscall_broker/broker_client.h', |
236 'syscall_broker/broker_common.h', | 236 'syscall_broker/broker_common.h', |
| 237 'syscall_broker/broker_file_permission.cc', |
| 238 'syscall_broker/broker_file_permission.h', |
237 'syscall_broker/broker_host.cc', | 239 'syscall_broker/broker_host.cc', |
238 'syscall_broker/broker_host.h', | 240 'syscall_broker/broker_host.h', |
239 'syscall_broker/broker_policy.cc', | 241 'syscall_broker/broker_policy.cc', |
240 'syscall_broker/broker_policy.h', | 242 'syscall_broker/broker_policy.h', |
241 'syscall_broker/broker_process.cc', | 243 'syscall_broker/broker_process.cc', |
242 'syscall_broker/broker_process.h', | 244 'syscall_broker/broker_process.h', |
243 ], | 245 ], |
244 'dependencies': [ | 246 'dependencies': [ |
245 '../base/base.gyp:base', | 247 '../base/base.gyp:base', |
246 ], | 248 ], |
247 'defines': [ | 249 'defines': [ |
248 'SANDBOX_IMPLEMENTATION', | 250 'SANDBOX_IMPLEMENTATION', |
249 ], | 251 ], |
250 'conditions': [ | 252 'conditions': [ |
251 ['compile_credentials==1', { | 253 ['compile_credentials==1', { |
252 'sources': [ | 254 'sources': [ |
253 'services/credentials.cc', | 255 'services/credentials.cc', |
254 'services/credentials.h', | 256 'services/credentials.h', |
| 257 'services/proc_util.cc', |
| 258 'services/proc_util.h', |
255 ], | 259 ], |
256 'dependencies': [ | 260 'dependencies': [ |
257 # for capabilities.cc. | 261 # for capabilities.cc. |
258 '../build/linux/system.gyp:libcap', | 262 '../build/linux/system.gyp:libcap', |
259 ], | 263 ], |
260 }], | 264 }], |
261 ], | 265 ], |
262 'include_dirs': [ | 266 'include_dirs': [ |
263 '..', | 267 '..', |
264 ], | 268 ], |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 '../../build/isolate.gypi', | 384 '../../build/isolate.gypi', |
381 ], | 385 ], |
382 'sources': [ | 386 'sources': [ |
383 '../sandbox_linux_unittests.isolate', | 387 '../sandbox_linux_unittests.isolate', |
384 ], | 388 ], |
385 }, | 389 }, |
386 ], | 390 ], |
387 }], | 391 }], |
388 ], | 392 ], |
389 } | 393 } |
OLD | NEW |