| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 '../build/common_untrusted.gypi', | 10 '../build/common_untrusted.gypi', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 'build_irt': 0, | 23 'build_irt': 0, |
| 24 'build_pnacl_newlib': 0, | 24 'build_pnacl_newlib': 0, |
| 25 'build_nonsfi_helper': 1, | 25 'build_nonsfi_helper': 1, |
| 26 | 26 |
| 27 'sources': [ | 27 'sources': [ |
| 28 # This is the subset of linux build target, needed for | 28 # This is the subset of linux build target, needed for |
| 29 # nacl_helper_nonsfi's sandbox implementation. | 29 # nacl_helper_nonsfi's sandbox implementation. |
| 30 'linux/services/proc_util.cc', | 30 'linux/services/proc_util.cc', |
| 31 'linux/services/thread_helpers.cc', | 31 'linux/services/thread_helpers.cc', |
| 32 'linux/suid/client/setuid_sandbox_client.cc', | 32 'linux/suid/client/setuid_sandbox_client.cc', |
| 33 # TODO(hidehiko): Support namespace sandbox and seccomp-bpf | 33 |
| 34 # sandbox. | 34 'linux/bpf_dsl/bpf_dsl.cc', |
| 35 'linux/bpf_dsl/codegen.cc', |
| 36 'linux/bpf_dsl/dump_bpf.cc', |
| 37 'linux/bpf_dsl/policy.cc', |
| 38 'linux/bpf_dsl/policy_compiler.cc', |
| 39 'linux/bpf_dsl/syscall_set.cc', |
| 40 'linux/bpf_dsl/verifier.cc', |
| 41 'linux/seccomp-bpf-helpers/sigsys_handlers.cc', |
| 42 'linux/seccomp-bpf-helpers/syscall_parameters_restrictions.cc', |
| 43 'linux/seccomp-bpf/die.cc', |
| 44 'linux/seccomp-bpf/errorcode.cc', |
| 45 'linux/seccomp-bpf/sandbox_bpf.cc', |
| 46 'linux/seccomp-bpf/syscall.cc', |
| 47 'linux/seccomp-bpf/trap.cc', |
| 48 'linux/services/resource_limits.cc', |
| 49 'linux/services/syscall_wrappers.cc', |
| 50 # TODO(hidehiko): Support namespace sandbox. |
| 35 ], | 51 ], |
| 36 }, | 52 }, |
| 37 'dependencies': [ | 53 'dependencies': [ |
| 38 '../base/base_nacl.gyp:base_nacl_nonsfi', | 54 '../base/base_nacl.gyp:base_nacl_nonsfi', |
| 39 '../native_client/tools.gyp:prep_toolchain', | 55 '../native_client/tools.gyp:prep_toolchain', |
| 40 ], | 56 ], |
| 41 }, | 57 }, |
| 42 ], | 58 ], |
| 43 }], | 59 }], |
| 44 ], | 60 ], |
| 45 } | 61 } |
| OLD | NEW |