| 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': 'seatbelt', |
| 9 'type' : '<(component)', |
| 10 'sources': [ |
| 11 'seatbelt.cc', |
| 12 'seatbelt.h', |
| 13 'seatbelt_export.h', |
| 14 ], |
| 15 'defines': [ |
| 16 'SEATBELT_IMPLEMENTATION', |
| 17 ], |
| 18 'include_dirs': [ |
| 19 '../..', |
| 20 ], |
| 21 'link_settings': { |
| 22 'libraries': [ |
| 23 '$(SDKROOT)/usr/lib/libsandbox.dylib', |
| 24 ], |
| 25 } |
| 26 }, |
| 27 { |
| 8 'target_name': 'sandbox', | 28 'target_name': 'sandbox', |
| 9 'type': '<(component)', | 29 'type': '<(component)', |
| 10 'sources': [ | 30 'sources': [ |
| 11 'bootstrap_sandbox.cc', | 31 'bootstrap_sandbox.cc', |
| 12 'bootstrap_sandbox.h', | 32 'bootstrap_sandbox.h', |
| 13 'launchd_interception_server.cc', | 33 'launchd_interception_server.cc', |
| 14 'launchd_interception_server.h', | 34 'launchd_interception_server.h', |
| 15 'mach_message_server.cc', | 35 'mach_message_server.cc', |
| 16 'mach_message_server.h', | 36 'mach_message_server.h', |
| 17 'message_server.h', | 37 'message_server.h', |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 'dependencies': [ | 95 'dependencies': [ |
| 76 'sandbox_mac_unittests', | 96 'sandbox_mac_unittests', |
| 77 ], | 97 ], |
| 78 'includes': [ '../../build/isolate.gypi' ], | 98 'includes': [ '../../build/isolate.gypi' ], |
| 79 'sources': [ '../sandbox_mac_unittests.isolate' ], | 99 'sources': [ '../sandbox_mac_unittests.isolate' ], |
| 80 }, | 100 }, |
| 81 ], | 101 ], |
| 82 }], | 102 }], |
| 83 ], | 103 ], |
| 84 } | 104 } |
| OLD | NEW |