| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'conditions': [ | 7 'conditions': [ |
| 8 ['OS=="linux"', { | 8 ['OS=="linux"', { |
| 9 'compile_suid_client': 1, | 9 'compile_suid_client': 1, |
| 10 'compile_credentials': 1, | 10 'compile_credentials': 1, |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 ], | 113 ], |
| 114 }], | 114 }], |
| 115 ], | 115 ], |
| 116 }, | 116 }, |
| 117 { | 117 { |
| 118 'target_name': 'seccomp_bpf', | 118 'target_name': 'seccomp_bpf', |
| 119 'type': '<(component)', | 119 'type': '<(component)', |
| 120 'sources': [ | 120 'sources': [ |
| 121 'bpf_dsl/bpf_dsl.cc', | 121 'bpf_dsl/bpf_dsl.cc', |
| 122 'bpf_dsl/bpf_dsl.h', | 122 'bpf_dsl/bpf_dsl.h', |
| 123 'bpf_dsl/bpf_dsl_forward.h', |
| 123 'bpf_dsl/bpf_dsl_impl.h', | 124 'bpf_dsl/bpf_dsl_impl.h', |
| 124 'bpf_dsl/cons.h', | 125 'bpf_dsl/cons.h', |
| 126 'bpf_dsl/policy.cc', |
| 127 'bpf_dsl/policy.h', |
| 125 'bpf_dsl/policy_compiler.cc', | 128 'bpf_dsl/policy_compiler.cc', |
| 126 'bpf_dsl/policy_compiler.h', | 129 'bpf_dsl/policy_compiler.h', |
| 127 'bpf_dsl/trap_registry.h', | 130 'bpf_dsl/trap_registry.h', |
| 128 'seccomp-bpf/basicblock.cc', | 131 'seccomp-bpf/basicblock.cc', |
| 129 'seccomp-bpf/basicblock.h', | 132 'seccomp-bpf/basicblock.h', |
| 130 'seccomp-bpf/codegen.cc', | 133 'seccomp-bpf/codegen.cc', |
| 131 'seccomp-bpf/codegen.h', | 134 'seccomp-bpf/codegen.h', |
| 132 'seccomp-bpf/die.cc', | 135 'seccomp-bpf/die.cc', |
| 133 'seccomp-bpf/die.h', | 136 'seccomp-bpf/die.h', |
| 134 'seccomp-bpf/errorcode.cc', | 137 'seccomp-bpf/errorcode.cc', |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 '../../build/isolate.gypi', | 351 '../../build/isolate.gypi', |
| 349 ], | 352 ], |
| 350 'sources': [ | 353 'sources': [ |
| 351 '../sandbox_linux_unittests.isolate', | 354 '../sandbox_linux_unittests.isolate', |
| 352 ], | 355 ], |
| 353 }, | 356 }, |
| 354 ], | 357 ], |
| 355 }], | 358 }], |
| 356 ], | 359 ], |
| 357 } | 360 } |
| OLD | NEW |