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: ipc/mojo/ipc_mojo.gyp

Issue 382333002: Introduce ChannelMojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing Mac build failure Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'includes': [
10 ],
11 'targets': [
12 {
13 'target_name': 'ipc_mojo',
14 'type': '<(component)',
15 'variables': {
16 },
17 'defines': [
18 'IPC_MOJO_IMPLEMENTATION',
19 ],
20 'dependencies': [
21 '../ipc.gyp:ipc',
22 '../../base/base.gyp:base',
23 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
24 '../../mojo/mojo.gyp:mojo_cpp_bindings',
25 '../../mojo/mojo.gyp:mojo_environment_chromium',
26 ],
27 'sources': [
28 'ipc_channel_mojo.cc',
29 'ipc_channel_mojo.h',
30 'ipc_message_pipe_reader.cc',
31 'ipc_message_pipe_reader.h',
32 ],
33 # TODO(gregoryd): direct_dependent_settings should be shared with the
34 # 64-bit target, but it doesn't work due to a bug in gyp
35 'direct_dependent_settings': {
36 'include_dirs': [
37 '..',
38 ],
39 },
40 },
41 {
42 'target_name': 'ipc_mojo_unittests',
43 'type': '<(gtest_target_type)',
44 'dependencies': [
45 '../ipc.gyp:ipc',
46 '../ipc.gyp:test_support_ipc',
47 '../../base/base.gyp:base',
48 '../../base/base.gyp:base_i18n',
49 '../../base/base.gyp:test_support_base',
50 '../../mojo/mojo.gyp:mojo_system_impl',
51 '../../testing/gtest.gyp:gtest',
52 'ipc_mojo',
53 ],
54 'include_dirs': [
55 '..'
56 ],
57 'sources': [
58 '../run_all_unittests.cc', # XXX: What should we do?
59 'ipc_channel_mojo_unittest.cc',
60 ],
61 'conditions': [
62 ],
63 },
64 ],
65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698