| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 'process_outputs_as_sources': 1, | 74 'process_outputs_as_sources': 1, |
| 73 'message': 'Generating XPC stubs for 10.6 compatability.', | 75 'message': 'Generating XPC stubs for 10.6 compatability.', |
| 74 }, | 76 }, |
| 75 ], | 77 ], |
| 76 }, | 78 }, |
| 77 { | 79 { |
| 78 'target_name': 'sandbox_mac_unittests', | 80 'target_name': 'sandbox_mac_unittests', |
| 79 'type': 'executable', | 81 'type': 'executable', |
| 80 'sources': [ | 82 'sources': [ |
| 81 'bootstrap_sandbox_unittest.mm', | 83 'bootstrap_sandbox_unittest.mm', |
| 84 'dispatch_source_mach_unittest.cc', |
| 82 'policy_unittest.cc', | 85 'policy_unittest.cc', |
| 83 ], | 86 ], |
| 84 'dependencies': [ | 87 'dependencies': [ |
| 85 'sandbox', | 88 'sandbox', |
| 86 '../base/base.gyp:base', | 89 '../base/base.gyp:base', |
| 87 '../base/base.gyp:run_all_unittests', | 90 '../base/base.gyp:run_all_unittests', |
| 88 '../testing/gtest.gyp:gtest', | 91 '../testing/gtest.gyp:gtest', |
| 89 ], | 92 ], |
| 90 'include_dirs': [ | 93 'include_dirs': [ |
| 91 '..', | 94 '..', |
| 92 ], | 95 ], |
| 93 'link_settings': { | 96 'link_settings': { |
| 94 'libraries': [ | 97 'libraries': [ |
| 95 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 98 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 96 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 99 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 97 ], | 100 ], |
| 98 }, | 101 }, |
| 99 }, | 102 }, |
| 100 ], | 103 ], |
| 101 } | 104 } |
| OLD | NEW |