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

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: Remove serialization Created 6 years, 1 month 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 "services/scoped_process.h", 227 "services/scoped_process.h",
228 "services/thread_helpers.cc", 228 "services/thread_helpers.cc",
229 "services/thread_helpers.h", 229 "services/thread_helpers.h",
230 "services/yama.h", 230 "services/yama.h",
231 "services/yama.cc", 231 "services/yama.cc",
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 246
245 defines = [ "SANDBOX_IMPLEMENTATION" ] 247 defines = [ "SANDBOX_IMPLEMENTATION" ]
246 248
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 # 'type': 'none', 329 # 'type': 'none',
328 # 'variables': { 330 # 'variables': {
329 # 'test_suite_name': 'sandbox_linux_jni_unittests', 331 # 'test_suite_name': 'sandbox_linux_jni_unittests',
330 # }, 332 # },
331 # 'dependencies': [ 333 # 'dependencies': [
332 # 'sandbox_linux_jni_unittests', 334 # 'sandbox_linux_jni_unittests',
333 # ], 335 # ],
334 # 'includes': [ '../../build/apk_test.gypi' ], 336 # 'includes': [ '../../build/apk_test.gypi' ],
335 # } 337 # }
336 } 338 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698