Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: sandbox/mac/sandbox_mac.gypi

Issue 1855303003: Wrap deprecated sandbox functions in C++ class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sandbox/mac/BUILD.gn ('k') | sandbox/mac/seatbelt.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « sandbox/mac/BUILD.gn ('k') | sandbox/mac/seatbelt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698