Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(562)

Side by Side Diff: sandbox/linux/BUILD.gn

Issue 721553002: sandbox: Extend BrokerPolicy to support file creation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 declare_args() { 7 declare_args() {
8 compile_suid_client = is_linux 8 compile_suid_client = is_linux
9 9
10 compile_credentials = is_linux 10 compile_credentials = is_linux
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 "services/syscall_wrappers.h", 228 "services/syscall_wrappers.h",
229 "services/thread_helpers.cc", 229 "services/thread_helpers.cc",
230 "services/thread_helpers.h", 230 "services/thread_helpers.h",
231 "services/yama.h", 231 "services/yama.h",
232 "services/yama.cc", 232 "services/yama.cc",
233 "syscall_broker/broker_channel.cc", 233 "syscall_broker/broker_channel.cc",
234 "syscall_broker/broker_channel.h", 234 "syscall_broker/broker_channel.h",
235 "syscall_broker/broker_client.cc", 235 "syscall_broker/broker_client.cc",
236 "syscall_broker/broker_client.h", 236 "syscall_broker/broker_client.h",
237 "syscall_broker/broker_common.h", 237 "syscall_broker/broker_common.h",
238 "syscall_broker/broker_file_permission.cc",
239 "syscall_broker/broker_file_permission.h",
238 "syscall_broker/broker_host.cc", 240 "syscall_broker/broker_host.cc",
239 "syscall_broker/broker_host.h", 241 "syscall_broker/broker_host.h",
240 "syscall_broker/broker_policy.cc", 242 "syscall_broker/broker_policy.cc",
241 "syscall_broker/broker_policy.h", 243 "syscall_broker/broker_policy.h",
242 "syscall_broker/broker_process.cc", 244 "syscall_broker/broker_process.cc",
243 "syscall_broker/broker_process.h", 245 "syscall_broker/broker_process.h",
244 ] 246 ]
245 247
246 defines = [ "SANDBOX_IMPLEMENTATION" ] 248 defines = [ "SANDBOX_IMPLEMENTATION" ]
247 249
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 # 'type': 'none', 330 # 'type': 'none',
329 # 'variables': { 331 # 'variables': {
330 # 'test_suite_name': 'sandbox_linux_jni_unittests', 332 # 'test_suite_name': 'sandbox_linux_jni_unittests',
331 # }, 333 # },
332 # 'dependencies': [ 334 # 'dependencies': [
333 # 'sandbox_linux_jni_unittests', 335 # 'sandbox_linux_jni_unittests',
334 # ], 336 # ],
335 # 'includes': [ '../../build/apk_test.gypi' ], 337 # 'includes': [ '../../build/apk_test.gypi' ],
336 # } 338 # }
337 } 339 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698