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

Side by Side Diff: ipc/ipc.gyp

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 | « ipc/DEPS ('k') | ipc/ipc_send_fds_test.cc » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'ipc.gypi', 10 'ipc.gypi',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 }], 82 }],
83 ['OS == "android"', { 83 ['OS == "android"', {
84 'sources!': [ 84 'sources!': [
85 # These multiprocess tests don't work on Android. 85 # These multiprocess tests don't work on Android.
86 'ipc_channel_unittest.cc', 86 'ipc_channel_unittest.cc',
87 ], 87 ],
88 'dependencies': [ 88 'dependencies': [
89 '../testing/android/native_test.gyp:native_test_native_code', 89 '../testing/android/native_test.gyp:native_test_native_code',
90 ], 90 ],
91 }], 91 }],
92 ['OS == "mac"', {
93 'dependencies': [
94 '../sandbox/sandbox.gyp:seatbelt',
95 ],
96 }],
92 ], 97 ],
93 }, 98 },
94 { 99 {
95 'target_name': 'ipc_perftests', 100 'target_name': 'ipc_perftests',
96 'type': '<(gtest_target_type)', 101 'type': '<(gtest_target_type)',
97 # TODO(viettrungluu): Figure out which dependencies are really needed. 102 # TODO(viettrungluu): Figure out which dependencies are really needed.
98 'dependencies': [ 103 'dependencies': [
99 'ipc', 104 'ipc',
100 'test_support_ipc', 105 'test_support_ipc',
101 '../base/base.gyp:base', 106 '../base/base.gyp:base',
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 '../build/isolate.gypi', 239 '../build/isolate.gypi',
235 ], 240 ],
236 'sources': [ 241 'sources': [
237 'ipc_tests.isolate', 242 'ipc_tests.isolate',
238 ], 243 ],
239 }, 244 },
240 ], 245 ],
241 }], 246 }],
242 ], 247 ],
243 } 248 }
OLDNEW
« no previous file with comments | « ipc/DEPS ('k') | ipc/ipc_send_fds_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698