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

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

Issue 699633003: CodeGen: rewrite implementation [3/3] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@codegen-api-2
Patch Set: Use size_t instead of uint32_t as semantically appropriate 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
« no previous file with comments | « no previous file | sandbox/linux/sandbox_linux.gypi » ('j') | sandbox/linux/seccomp-bpf/codegen.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 "bpf_dsl/bpf_dsl_forward.h", 143 "bpf_dsl/bpf_dsl_forward.h",
144 "bpf_dsl/bpf_dsl_impl.h", 144 "bpf_dsl/bpf_dsl_impl.h",
145 "bpf_dsl/cons.h", 145 "bpf_dsl/cons.h",
146 "bpf_dsl/dump_bpf.cc", 146 "bpf_dsl/dump_bpf.cc",
147 "bpf_dsl/dump_bpf.h", 147 "bpf_dsl/dump_bpf.h",
148 "bpf_dsl/policy.cc", 148 "bpf_dsl/policy.cc",
149 "bpf_dsl/policy.h", 149 "bpf_dsl/policy.h",
150 "bpf_dsl/policy_compiler.cc", 150 "bpf_dsl/policy_compiler.cc",
151 "bpf_dsl/policy_compiler.h", 151 "bpf_dsl/policy_compiler.h",
152 "bpf_dsl/trap_registry.h", 152 "bpf_dsl/trap_registry.h",
153 "seccomp-bpf/basicblock.cc",
154 "seccomp-bpf/basicblock.h",
155 "seccomp-bpf/codegen.cc", 153 "seccomp-bpf/codegen.cc",
156 "seccomp-bpf/codegen.h", 154 "seccomp-bpf/codegen.h",
157 "seccomp-bpf/die.cc", 155 "seccomp-bpf/die.cc",
158 "seccomp-bpf/die.h", 156 "seccomp-bpf/die.h",
159 "seccomp-bpf/errorcode.cc", 157 "seccomp-bpf/errorcode.cc",
160 "seccomp-bpf/errorcode.h", 158 "seccomp-bpf/errorcode.h",
161 "seccomp-bpf/instruction.h",
162 "seccomp-bpf/linux_seccomp.h", 159 "seccomp-bpf/linux_seccomp.h",
163 "seccomp-bpf/sandbox_bpf.cc", 160 "seccomp-bpf/sandbox_bpf.cc",
164 "seccomp-bpf/sandbox_bpf.h", 161 "seccomp-bpf/sandbox_bpf.h",
165 "seccomp-bpf/syscall.cc", 162 "seccomp-bpf/syscall.cc",
166 "seccomp-bpf/syscall.h", 163 "seccomp-bpf/syscall.h",
167 "seccomp-bpf/syscall_iterator.cc", 164 "seccomp-bpf/syscall_iterator.cc",
168 "seccomp-bpf/syscall_iterator.h", 165 "seccomp-bpf/syscall_iterator.h",
169 "seccomp-bpf/trap.cc", 166 "seccomp-bpf/trap.cc",
170 "seccomp-bpf/trap.h", 167 "seccomp-bpf/trap.h",
171 "seccomp-bpf/verifier.cc", 168 "seccomp-bpf/verifier.cc",
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 # 'type': 'none', 322 # 'type': 'none',
326 # 'variables': { 323 # 'variables': {
327 # 'test_suite_name': 'sandbox_linux_jni_unittests', 324 # 'test_suite_name': 'sandbox_linux_jni_unittests',
328 # }, 325 # },
329 # 'dependencies': [ 326 # 'dependencies': [
330 # 'sandbox_linux_jni_unittests', 327 # 'sandbox_linux_jni_unittests',
331 # ], 328 # ],
332 # 'includes': [ '../../build/apk_test.gypi' ], 329 # 'includes': [ '../../build/apk_test.gypi' ],
333 # } 330 # }
334 } 331 }
OLDNEW
« no previous file with comments | « no previous file | sandbox/linux/sandbox_linux.gypi » ('j') | sandbox/linux/seccomp-bpf/codegen.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698