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

Side by Side Diff: sandbox/linux/sandbox_linux.gypi

Issue 269303002: Linux sandbox: implement new BPF testing macros (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 'tests/sandbox_test_runner_function_pointer.cc', 70 'tests/sandbox_test_runner_function_pointer.cc',
71 'tests/sandbox_test_runner_function_pointer.h', 71 'tests/sandbox_test_runner_function_pointer.h',
72 'tests/test_utils.cc', 72 'tests/test_utils.cc',
73 'tests/test_utils.h', 73 'tests/test_utils.h',
74 'tests/unit_tests.cc', 74 'tests/unit_tests.cc',
75 'tests/unit_tests.h', 75 'tests/unit_tests.h',
76 ], 76 ],
77 'conditions': [ 77 'conditions': [
78 [ 'use_seccomp_bpf==1', { 78 [ 'use_seccomp_bpf==1', {
79 'sources': [ 79 'sources': [
80 'seccomp-bpf/bpf_tests.cc', 80 'seccomp-bpf/bpf_tester_compatibility_delegate.cc',
81 'seccomp-bpf/bpf_tester_compatibility_delegate.h',
81 'seccomp-bpf/bpf_tests.h', 82 'seccomp-bpf/bpf_tests.h',
82 'seccomp-bpf/sandbox_bpf_test_runner.cc', 83 'seccomp-bpf/sandbox_bpf_test_runner.cc',
83 'seccomp-bpf/sandbox_bpf_test_runner.h', 84 'seccomp-bpf/sandbox_bpf_test_runner.h',
84 ], 85 ],
85 'dependencies': [ 86 'dependencies': [
86 'seccomp_bpf', 87 'seccomp_bpf',
87 ] 88 ]
88 }], 89 }],
89 ], 90 ],
90 }, 91 },
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 }, 331 },
331 'dependencies': [ 332 'dependencies': [
332 'sandbox_linux_jni_unittests', 333 'sandbox_linux_jni_unittests',
333 ], 334 ],
334 'includes': [ '../../build/apk_test.gypi' ], 335 'includes': [ '../../build/apk_test.gypi' ],
335 } 336 }
336 ], 337 ],
337 }], 338 }],
338 ], 339 ],
339 } 340 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698