| 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_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 Loading... |
| 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 } |
| OLD | NEW |