| 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', | |
| 15 'launchd_interception_server.cc', | 13 'launchd_interception_server.cc', |
| 16 'launchd_interception_server.h', | 14 'launchd_interception_server.h', |
| 17 'mach_message_server.cc', | 15 'mach_message_server.cc', |
| 18 'mach_message_server.h', | 16 'mach_message_server.h', |
| 19 'message_server.h', | 17 'message_server.h', |
| 20 'os_compatibility.cc', | 18 'os_compatibility.cc', |
| 21 'os_compatibility.h', | 19 'os_compatibility.h', |
| 22 'policy.cc', | 20 'policy.cc', |
| 23 'policy.h', | 21 'policy.h', |
| 24 'xpc.cc', | 22 'xpc.cc', |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 }, | 84 }, |
| 87 ], | 85 ], |
| 88 }], | 86 }], |
| 89 ], | 87 ], |
| 90 }, | 88 }, |
| 91 { | 89 { |
| 92 'target_name': 'sandbox_mac_unittests', | 90 'target_name': 'sandbox_mac_unittests', |
| 93 'type': 'executable', | 91 'type': 'executable', |
| 94 'sources': [ | 92 'sources': [ |
| 95 'bootstrap_sandbox_unittest.mm', | 93 'bootstrap_sandbox_unittest.mm', |
| 96 'dispatch_source_mach_unittest.cc', | |
| 97 'policy_unittest.cc', | 94 'policy_unittest.cc', |
| 98 'xpc_message_server_unittest.cc', | 95 'xpc_message_server_unittest.cc', |
| 99 ], | 96 ], |
| 100 'dependencies': [ | 97 'dependencies': [ |
| 101 'sandbox', | 98 'sandbox', |
| 102 '../base/base.gyp:base', | 99 '../base/base.gyp:base', |
| 103 '../base/base.gyp:run_all_unittests', | 100 '../base/base.gyp:run_all_unittests', |
| 104 '../testing/gtest.gyp:gtest', | 101 '../testing/gtest.gyp:gtest', |
| 105 ], | 102 ], |
| 106 'include_dirs': [ | 103 'include_dirs': [ |
| 107 '..', | 104 '..', |
| 108 ], | 105 ], |
| 109 'link_settings': { | 106 'link_settings': { |
| 110 'libraries': [ | 107 'libraries': [ |
| 111 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 108 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 112 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 109 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 113 ], | 110 ], |
| 114 }, | 111 }, |
| 115 }, | 112 }, |
| 116 ], | 113 ], |
| 117 } | 114 } |
| OLD | NEW |