| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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': 'sandbox', | 8 'target_name': 'sandbox', |
| 9 'type': '<(component)', | 9 'type': '<(component)', |
| 10 'sources': [ | 10 'sources': [ |
| 11 'bootstrap_sandbox.cc', | 11 'bootstrap_sandbox.cc', |
| 12 'bootstrap_sandbox.h', | 12 'bootstrap_sandbox.h', |
| 13 'launchd_interception_server.cc', | 13 'launchd_interception_server.cc', |
| 14 'launchd_interception_server.h', | 14 'launchd_interception_server.h', |
| 15 'mach_message_server.cc', | 15 'mach_message_server.cc', |
| 16 'mach_message_server.h', | 16 'mach_message_server.h', |
| 17 'message_server.h', | 17 'message_server.h', |
| 18 'os_compatibility.cc', | 18 'os_compatibility.cc', |
| 19 'os_compatibility.h', | 19 'os_compatibility.h', |
| 20 'policy.cc', | 20 'policy.cc', |
| 21 'policy.h', | 21 'policy.h', |
| 22 'pre_exec_delegate.cc', |
| 23 'pre_exec_delegate.h', |
| 22 'xpc.cc', | 24 'xpc.cc', |
| 23 'xpc.h', | 25 'xpc.h', |
| 24 'xpc_message_server.cc', | 26 'xpc_message_server.cc', |
| 25 'xpc_message_server.h', | 27 'xpc_message_server.h', |
| 26 ], | 28 ], |
| 27 'dependencies': [ | 29 'dependencies': [ |
| 28 '../base/base.gyp:base', | 30 '../base/base.gyp:base', |
| 29 ], | 31 ], |
| 30 'include_dirs': [ | 32 'include_dirs': [ |
| 31 '..', | 33 '..', |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 'dependencies': [ | 122 'dependencies': [ |
| 121 'sandbox_mac_unittests', | 123 'sandbox_mac_unittests', |
| 122 ], | 124 ], |
| 123 'includes': [ '../../build/isolate.gypi' ], | 125 'includes': [ '../../build/isolate.gypi' ], |
| 124 'sources': [ '../sandbox_mac_unittests.isolate' ], | 126 'sources': [ '../sandbox_mac_unittests.isolate' ], |
| 125 }, | 127 }, |
| 126 ], | 128 ], |
| 127 }], | 129 }], |
| 128 ], | 130 ], |
| 129 } | 131 } |
| OLD | NEW |