| 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 'dispatch_source_mach.cc', |
| 14 'dispatch_source_mach.h', |
| 13 'launchd_interception_server.cc', | 15 'launchd_interception_server.cc', |
| 14 'launchd_interception_server.h', | 16 'launchd_interception_server.h', |
| 15 'mach_message_server.cc', | 17 'mach_message_server.cc', |
| 16 'mach_message_server.h', | 18 'mach_message_server.h', |
| 17 'message_server.h', | 19 'message_server.h', |
| 18 'os_compatibility.cc', | 20 'os_compatibility.cc', |
| 19 'os_compatibility.h', | 21 'os_compatibility.h', |
| 20 'policy.cc', | 22 'policy.cc', |
| 21 'policy.h', | 23 'policy.h', |
| 22 'xpc.h', | 24 'xpc.h', |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 ], | 94 ], |
| 93 'link_settings': { | 95 'link_settings': { |
| 94 'libraries': [ | 96 'libraries': [ |
| 95 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 97 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 96 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 98 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 97 ], | 99 ], |
| 98 }, | 100 }, |
| 99 }, | 101 }, |
| 100 ], | 102 ], |
| 101 } | 103 } |
| OLD | NEW |