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

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

Issue 1292753009: sandbox/linux: move ErrorCode into bpf_dsl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bpf_dsl-deps
Patch Set: Rebase and cleanup test code Created 5 years, 4 months 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/bpf_dsl/DEPS » ('j') | no next file with comments »
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 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 declare_args() { 8 declare_args() {
9 compile_suid_client = is_linux 9 compile_suid_client = is_linux
10 10
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 sources += [ 110 sources += [
111 "suid/client/setuid_sandbox_client_unittest.cc", 111 "suid/client/setuid_sandbox_client_unittest.cc",
112 "suid/client/setuid_sandbox_host_unittest.cc", 112 "suid/client/setuid_sandbox_host_unittest.cc",
113 ] 113 ]
114 } 114 }
115 if (use_seccomp_bpf) { 115 if (use_seccomp_bpf) {
116 sources += [ 116 sources += [
117 "bpf_dsl/bpf_dsl_unittest.cc", 117 "bpf_dsl/bpf_dsl_unittest.cc",
118 "bpf_dsl/codegen_unittest.cc", 118 "bpf_dsl/codegen_unittest.cc",
119 "bpf_dsl/cons_unittest.cc", 119 "bpf_dsl/cons_unittest.cc",
120 "bpf_dsl/errorcode_unittest.cc",
120 "bpf_dsl/syscall_set_unittest.cc", 121 "bpf_dsl/syscall_set_unittest.cc",
122 "bpf_dsl/test_trap_registry.cc",
123 "bpf_dsl/test_trap_registry.h",
124 "bpf_dsl/test_trap_registry_unittest.cc",
121 "integration_tests/bpf_dsl_seccomp_unittest.cc", 125 "integration_tests/bpf_dsl_seccomp_unittest.cc",
122 "integration_tests/seccomp_broker_process_unittest.cc", 126 "integration_tests/seccomp_broker_process_unittest.cc",
123 "seccomp-bpf-helpers/baseline_policy_unittest.cc", 127 "seccomp-bpf-helpers/baseline_policy_unittest.cc",
124 "seccomp-bpf-helpers/syscall_parameters_restrictions_unittests.cc", 128 "seccomp-bpf-helpers/syscall_parameters_restrictions_unittests.cc",
125 "seccomp-bpf/bpf_tests_unittest.cc", 129 "seccomp-bpf/bpf_tests_unittest.cc",
126 "seccomp-bpf/errorcode_unittest.cc",
127 "seccomp-bpf/sandbox_bpf_unittest.cc", 130 "seccomp-bpf/sandbox_bpf_unittest.cc",
128 "seccomp-bpf/syscall_unittest.cc", 131 "seccomp-bpf/syscall_unittest.cc",
129 "seccomp-bpf/trap_unittest.cc", 132 "seccomp-bpf/trap_unittest.cc",
130 ] 133 ]
131 } 134 }
132 if (compile_credentials) { 135 if (compile_credentials) {
133 sources += [ 136 sources += [
134 "integration_tests/namespace_unix_domain_socket_unittest.cc", 137 "integration_tests/namespace_unix_domain_socket_unittest.cc",
135 "services/credentials_unittest.cc", 138 "services/credentials_unittest.cc",
136 "services/namespace_utils_unittest.cc", 139 "services/namespace_utils_unittest.cc",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 sources = [ 181 sources = [
179 "bpf_dsl/bpf_dsl.cc", 182 "bpf_dsl/bpf_dsl.cc",
180 "bpf_dsl/bpf_dsl.h", 183 "bpf_dsl/bpf_dsl.h",
181 "bpf_dsl/bpf_dsl_forward.h", 184 "bpf_dsl/bpf_dsl_forward.h",
182 "bpf_dsl/bpf_dsl_impl.h", 185 "bpf_dsl/bpf_dsl_impl.h",
183 "bpf_dsl/codegen.cc", 186 "bpf_dsl/codegen.cc",
184 "bpf_dsl/codegen.h", 187 "bpf_dsl/codegen.h",
185 "bpf_dsl/cons.h", 188 "bpf_dsl/cons.h",
186 "bpf_dsl/dump_bpf.cc", 189 "bpf_dsl/dump_bpf.cc",
187 "bpf_dsl/dump_bpf.h", 190 "bpf_dsl/dump_bpf.h",
191 "bpf_dsl/errorcode.cc",
192 "bpf_dsl/errorcode.h",
188 "bpf_dsl/linux_syscall_ranges.h", 193 "bpf_dsl/linux_syscall_ranges.h",
189 "bpf_dsl/policy.cc", 194 "bpf_dsl/policy.cc",
190 "bpf_dsl/policy.h", 195 "bpf_dsl/policy.h",
191 "bpf_dsl/policy_compiler.cc", 196 "bpf_dsl/policy_compiler.cc",
192 "bpf_dsl/policy_compiler.h", 197 "bpf_dsl/policy_compiler.h",
193 "bpf_dsl/seccomp_macros.h", 198 "bpf_dsl/seccomp_macros.h",
194 "bpf_dsl/syscall_set.cc", 199 "bpf_dsl/syscall_set.cc",
195 "bpf_dsl/syscall_set.h", 200 "bpf_dsl/syscall_set.h",
196 "bpf_dsl/trap_registry.h", 201 "bpf_dsl/trap_registry.h",
197 "bpf_dsl/verifier.cc", 202 "bpf_dsl/verifier.cc",
198 "bpf_dsl/verifier.h", 203 "bpf_dsl/verifier.h",
199 "seccomp-bpf/die.cc", 204 "seccomp-bpf/die.cc",
200 "seccomp-bpf/die.h", 205 "seccomp-bpf/die.h",
201 "seccomp-bpf/errorcode.cc",
202 "seccomp-bpf/errorcode.h",
203 "seccomp-bpf/sandbox_bpf.cc", 206 "seccomp-bpf/sandbox_bpf.cc",
204 "seccomp-bpf/sandbox_bpf.h", 207 "seccomp-bpf/sandbox_bpf.h",
205 "seccomp-bpf/syscall.cc", 208 "seccomp-bpf/syscall.cc",
206 "seccomp-bpf/syscall.h", 209 "seccomp-bpf/syscall.h",
207 "seccomp-bpf/trap.cc", 210 "seccomp-bpf/trap.cc",
208 "seccomp-bpf/trap.h", 211 "seccomp-bpf/trap.h",
209 ] 212 ]
210 defines = [ "SANDBOX_IMPLEMENTATION" ] 213 defines = [ "SANDBOX_IMPLEMENTATION" ]
211 214
212 deps = [ 215 deps = [
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 # 'type': 'none', 385 # 'type': 'none',
383 # 'variables': { 386 # 'variables': {
384 # 'test_suite_name': 'sandbox_linux_jni_unittests', 387 # 'test_suite_name': 'sandbox_linux_jni_unittests',
385 # }, 388 # },
386 # 'dependencies': [ 389 # 'dependencies': [
387 # 'sandbox_linux_jni_unittests', 390 # 'sandbox_linux_jni_unittests',
388 # ], 391 # ],
389 # 'includes': [ '../../build/apk_test.gypi' ], 392 # 'includes': [ '../../build/apk_test.gypi' ],
390 # } 393 # }
391 } 394 }
OLDNEW
« no previous file with comments | « no previous file | sandbox/linux/bpf_dsl/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698