| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_tester_compatibility_delegate.cc', | |
| 81 'seccomp-bpf/bpf_tester_compatibility_delegate.h', | 80 'seccomp-bpf/bpf_tester_compatibility_delegate.h', |
| 82 'seccomp-bpf/bpf_tests.h', | 81 'seccomp-bpf/bpf_tests.h', |
| 83 'seccomp-bpf/sandbox_bpf_test_runner.cc', | 82 'seccomp-bpf/sandbox_bpf_test_runner.cc', |
| 84 'seccomp-bpf/sandbox_bpf_test_runner.h', | 83 'seccomp-bpf/sandbox_bpf_test_runner.h', |
| 85 ], | 84 ], |
| 86 'dependencies': [ | 85 'dependencies': [ |
| 87 'seccomp_bpf', | 86 'seccomp_bpf', |
| 88 ] | 87 ] |
| 89 }], | 88 }], |
| 90 ], | 89 ], |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 }, | 330 }, |
| 332 'dependencies': [ | 331 'dependencies': [ |
| 333 'sandbox_linux_jni_unittests', | 332 'sandbox_linux_jni_unittests', |
| 334 ], | 333 ], |
| 335 'includes': [ '../../build/apk_test.gypi' ], | 334 'includes': [ '../../build/apk_test.gypi' ], |
| 336 } | 335 } |
| 337 ], | 336 ], |
| 338 }], | 337 }], |
| 339 ], | 338 ], |
| 340 } | 339 } |
| OLD | NEW |