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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 'dependencies': [ | 110 'dependencies': [ |
111 '../testing/android/native_test.gyp:native_test_native_code', | 111 '../testing/android/native_test.gyp:native_test_native_code', |
112 ], | 112 ], |
113 }], | 113 }], |
114 ], | 114 ], |
115 }, | 115 }, |
116 { | 116 { |
117 'target_name': 'seccomp_bpf', | 117 'target_name': 'seccomp_bpf', |
118 'type': '<(component)', | 118 'type': '<(component)', |
119 'sources': [ | 119 'sources': [ |
| 120 'bpf_dsl/bpf_dsl.cc', |
| 121 'bpf_dsl/bpf_dsl.h', |
| 122 'bpf_dsl/cons.h', |
120 'seccomp-bpf/basicblock.cc', | 123 'seccomp-bpf/basicblock.cc', |
121 'seccomp-bpf/basicblock.h', | 124 'seccomp-bpf/basicblock.h', |
122 'seccomp-bpf/codegen.cc', | 125 'seccomp-bpf/codegen.cc', |
123 'seccomp-bpf/codegen.h', | 126 'seccomp-bpf/codegen.h', |
124 'seccomp-bpf/die.cc', | 127 'seccomp-bpf/die.cc', |
125 'seccomp-bpf/die.h', | 128 'seccomp-bpf/die.h', |
126 'seccomp-bpf/errorcode.cc', | 129 'seccomp-bpf/errorcode.cc', |
127 'seccomp-bpf/errorcode.h', | 130 'seccomp-bpf/errorcode.h', |
128 'seccomp-bpf/instruction.h', | 131 'seccomp-bpf/instruction.h', |
129 'seccomp-bpf/linux_seccomp.h', | 132 'seccomp-bpf/linux_seccomp.h', |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 '../sandbox_linux_unittests.isolate', | 360 '../sandbox_linux_unittests.isolate', |
358 ], | 361 ], |
359 'sources': [ | 362 'sources': [ |
360 '../sandbox_linux_unittests.isolate', | 363 '../sandbox_linux_unittests.isolate', |
361 ], | 364 ], |
362 }, | 365 }, |
363 ], | 366 ], |
364 }], | 367 }], |
365 ], | 368 ], |
366 } | 369 } |
OLD | NEW |