| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'shell_lib', | 8 'target_name': 'shell_lib', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'sources': [ | 10 'sources': [ |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 'conditions': [ | 139 'conditions': [ |
| 140 ['OS=="linux"', { | 140 ['OS=="linux"', { |
| 141 'sources': [ | 141 'sources': [ |
| 142 'runner/host/linux_sandbox.cc', | 142 'runner/host/linux_sandbox.cc', |
| 143 'runner/host/linux_sandbox.h', | 143 'runner/host/linux_sandbox.h', |
| 144 ], | 144 ], |
| 145 'dependencies': [ | 145 'dependencies': [ |
| 146 '<(DEPTH)/sandbox/sandbox.gyp:sandbox', | 146 '<(DEPTH)/sandbox/sandbox.gyp:sandbox', |
| 147 '<(DEPTH)/sandbox/sandbox.gyp:sandbox_services', | 147 '<(DEPTH)/sandbox/sandbox.gyp:sandbox_services', |
| 148 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf', | 148 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf', |
| 149 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf_helpers', | |
| 150 ], | 149 ], |
| 151 }], | 150 }], |
| 152 ['OS=="mac"', { | 151 ['OS=="mac"', { |
| 153 'sources': [ | 152 'sources': [ |
| 154 'runner/host/mach_broker.cc', | 153 'runner/host/mach_broker.cc', |
| 155 'runner/host/mach_broker.h', | 154 'runner/host/mach_broker.h', |
| 156 ], | 155 ], |
| 157 }], | 156 }], |
| 158 ], | 157 ], |
| 159 }, { | 158 }, { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 '../../build/isolate.gypi', | 195 '../../build/isolate.gypi', |
| 197 ], | 196 ], |
| 198 'sources': [ | 197 'sources': [ |
| 199 'mojo_shell_unittests.isolate', | 198 'mojo_shell_unittests.isolate', |
| 200 ], | 199 ], |
| 201 }, | 200 }, |
| 202 ], | 201 ], |
| 203 }], | 202 }], |
| 204 ], | 203 ], |
| 205 } | 204 } |
| OLD | NEW |