| OLD | NEW |
| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 # "../testing/android/native_test.gyp:native_test_native_code", | 133 # "../testing/android/native_test.gyp:native_test_native_code", |
| 134 # ], | 134 # ], |
| 135 # }], | 135 # }], |
| 136 # ], | 136 # ], |
| 137 # }, | 137 # }, |
| 138 | 138 |
| 139 component("seccomp_bpf") { | 139 component("seccomp_bpf") { |
| 140 sources = [ | 140 sources = [ |
| 141 "bpf_dsl/bpf_dsl.cc", | 141 "bpf_dsl/bpf_dsl.cc", |
| 142 "bpf_dsl/bpf_dsl.h", | 142 "bpf_dsl/bpf_dsl.h", |
| 143 "bpf_dsl/bpf_dsl_forward.h", |
| 143 "bpf_dsl/bpf_dsl_impl.h", | 144 "bpf_dsl/bpf_dsl_impl.h", |
| 144 "bpf_dsl/cons.h", | 145 "bpf_dsl/cons.h", |
| 146 "bpf_dsl/policy.cc", |
| 147 "bpf_dsl/policy.h", |
| 145 "bpf_dsl/policy_compiler.cc", | 148 "bpf_dsl/policy_compiler.cc", |
| 146 "bpf_dsl/policy_compiler.h", | 149 "bpf_dsl/policy_compiler.h", |
| 147 "bpf_dsl/trap_registry.h", | 150 "bpf_dsl/trap_registry.h", |
| 148 "seccomp-bpf/basicblock.cc", | 151 "seccomp-bpf/basicblock.cc", |
| 149 "seccomp-bpf/basicblock.h", | 152 "seccomp-bpf/basicblock.h", |
| 150 "seccomp-bpf/codegen.cc", | 153 "seccomp-bpf/codegen.cc", |
| 151 "seccomp-bpf/codegen.h", | 154 "seccomp-bpf/codegen.h", |
| 152 "seccomp-bpf/die.cc", | 155 "seccomp-bpf/die.cc", |
| 153 "seccomp-bpf/die.h", | 156 "seccomp-bpf/die.h", |
| 154 "seccomp-bpf/errorcode.cc", | 157 "seccomp-bpf/errorcode.cc", |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 # 'type': 'none', | 316 # 'type': 'none', |
| 314 # 'variables': { | 317 # 'variables': { |
| 315 # 'test_suite_name': 'sandbox_linux_jni_unittests', | 318 # 'test_suite_name': 'sandbox_linux_jni_unittests', |
| 316 # }, | 319 # }, |
| 317 # 'dependencies': [ | 320 # 'dependencies': [ |
| 318 # 'sandbox_linux_jni_unittests', | 321 # 'sandbox_linux_jni_unittests', |
| 319 # ], | 322 # ], |
| 320 # 'includes': [ '../../build/apk_test.gypi' ], | 323 # 'includes': [ '../../build/apk_test.gypi' ], |
| 321 # } | 324 # } |
| 322 } | 325 } |
| OLD | NEW |