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

Side by Side Diff: ipc/ipc.gyp

Issue 2033243003: Use Mojo pipes to signal sync IPC events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
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',
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'ipc', 14 'target_name': 'ipc',
15 'type': '<(component)', 15 'type': '<(component)',
16 'variables': { 16 'variables': {
17 'ipc_target': 1, 17 'ipc_target': 1,
18 }, 18 },
19 'dependencies': [ 19 'dependencies': [
20 '../base/base.gyp:base', 20 '../base/base.gyp:base',
21 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect. 21 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect.
22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
23 '../mojo/mojo_edk.gyp:mojo_system_impl',
24 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
25 '../mojo/mojo_public.gyp:mojo_cpp_system',
23 ], 26 ],
24 # TODO(gregoryd): direct_dependent_settings should be shared with the 27 # TODO(gregoryd): direct_dependent_settings should be shared with the
25 # 64-bit target, but it doesn't work due to a bug in gyp 28 # 64-bit target, but it doesn't work due to a bug in gyp
26 'direct_dependent_settings': { 29 'direct_dependent_settings': {
27 'include_dirs': [ 30 'include_dirs': [
28 '..', 31 '..',
29 ], 32 ],
30 }, 33 },
31 'conditions': [ 34 'conditions': [
32 ['OS == "win" or OS == "mac"', { 35 ['OS == "win" or OS == "mac"', {
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 '../build/isolate.gypi', 242 '../build/isolate.gypi',
240 ], 243 ],
241 'sources': [ 244 'sources': [
242 'ipc_tests.isolate', 245 'ipc_tests.isolate',
243 ], 246 ],
244 }, 247 },
245 ], 248 ],
246 }], 249 }],
247 ], 250 ],
248 } 251 }
OLDNEW
« no previous file with comments | « ipc/DEPS ('k') | ipc/ipc_sync_channel.h » ('j') | mojo/public/cpp/system/event.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698