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