| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'sandbox_windows_target': 0, | 8 'sandbox_windows_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 { | 122 { |
| 123 'target_name': 'sandbox', | 123 'target_name': 'sandbox', |
| 124 'type': '<(library)', | 124 'type': '<(library)', |
| 125 'dependencies': [ | 125 'dependencies': [ |
| 126 '../base/base.gyp:base', | 126 '../base/base.gyp:base', |
| 127 ], | 127 ], |
| 128 'conditions': [ | 128 'conditions': [ |
| 129 ['target_arch!="arm"', { | 129 ['target_arch!="arm"', { |
| 130 'sources': [ | 130 'sources': [ |
| 131 'linux/seccomp/access.cc', | 131 'linux/seccomp/access.cc', |
| 132 'linux/seccomp/allocator.cc', |
| 133 'linux/seccomp/allocator.h', |
| 132 'linux/seccomp/clone.cc', | 134 'linux/seccomp/clone.cc', |
| 133 'linux/seccomp/exit.cc', | 135 'linux/seccomp/exit.cc', |
| 134 'linux/seccomp/debug.cc', | 136 'linux/seccomp/debug.cc', |
| 135 'linux/seccomp/getpid.cc', | 137 'linux/seccomp/getpid.cc', |
| 136 'linux/seccomp/gettid.cc', | 138 'linux/seccomp/gettid.cc', |
| 137 'linux/seccomp/ioctl.cc', | 139 'linux/seccomp/ioctl.cc', |
| 138 'linux/seccomp/ipc.cc', | 140 'linux/seccomp/ipc.cc', |
| 139 'linux/seccomp/library.cc', | 141 'linux/seccomp/library.cc', |
| 140 'linux/seccomp/library.h', | 142 'linux/seccomp/library.h', |
| 141 'linux/seccomp/linux_syscall_support.h', | 143 'linux/seccomp/linux_syscall_support.h', |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 ], | 407 ], |
| 406 }], | 408 }], |
| 407 ], | 409 ], |
| 408 } | 410 } |
| 409 | 411 |
| 410 # Local Variables: | 412 # Local Variables: |
| 411 # tab-width:2 | 413 # tab-width:2 |
| 412 # indent-tabs-mode:nil | 414 # indent-tabs-mode:nil |
| 413 # End: | 415 # End: |
| 414 # vim: set expandtab tabstop=2 shiftwidth=2: | 416 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |