| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'seccomp_intermediate_dir': '<(INTERMEDIATE_DIR)/seccomp-sandbox', | 8 'seccomp_intermediate_dir': '<(INTERMEDIATE_DIR)/seccomp-sandbox', |
| 9 }, | 9 }, |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'x86_decode.h', | 58 'x86_decode.h', |
| 59 ], | 59 ], |
| 60 }, | 60 }, |
| 61 { | 61 { |
| 62 'target_name': 'seccomp_tests', | 62 'target_name': 'seccomp_tests', |
| 63 'type': 'executable', | 63 'type': 'executable', |
| 64 'sources': [ | 64 'sources': [ |
| 65 'reference_trusted_thread.cc', | 65 'reference_trusted_thread.cc', |
| 66 'tests/clone_test_helper.S', | 66 'tests/clone_test_helper.S', |
| 67 'tests/test_runner.cc', | 67 'tests/test_runner.cc', |
| 68 'tests/test_patching.cc', |
| 69 'tests/test_patching_input.S', |
| 68 'tests/test_syscalls.cc', | 70 'tests/test_syscalls.cc', |
| 69 ], | 71 ], |
| 70 'include_dirs': [ | 72 'include_dirs': [ |
| 71 '.', | 73 '.', |
| 72 '<(seccomp_intermediate_dir)', | 74 '<(seccomp_intermediate_dir)', |
| 73 ], | 75 ], |
| 74 'dependencies': [ | 76 'dependencies': [ |
| 75 'seccomp_sandbox', | 77 'seccomp_sandbox', |
| 76 ], | 78 ], |
| 77 'libraries': [ | 79 'libraries': [ |
| 78 '-lpthread', | 80 '-lpthread', |
| 79 '-lutil', # For openpty() | 81 '-lutil', # For openpty() |
| 80 ], | 82 ], |
| 81 }, | 83 }, |
| 82 { | 84 { |
| 83 'target_name': 'timestats', | 85 'target_name': 'timestats', |
| 84 'type': 'executable', | 86 'type': 'executable', |
| 85 'sources': [ | 87 'sources': [ |
| 86 'timestats.cc', | 88 'timestats.cc', |
| 87 ], | 89 ], |
| 88 }, | 90 }, |
| 89 ], | 91 ], |
| 90 } | 92 } |
| OLD | NEW |