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

Side by Side Diff: ipc/mojo/ipc_mojo.gyp

Issue 2049363002: Move ScopedIPCSupport into its own build rule. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-handle-attachemnt-public-api
Patch Set: change rule name 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
« no previous file with comments | « ipc/mojo/BUILD.gn ('k') | ipc/mojo/scoped_ipc_support.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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 ], 10 ],
(...skipping 21 matching lines...) Expand all
32 'ipc_mojo_bootstrap.h', 32 'ipc_mojo_bootstrap.h',
33 'ipc_mojo_handle_attachment.cc', 33 'ipc_mojo_handle_attachment.cc',
34 'ipc_mojo_handle_attachment.h', 34 'ipc_mojo_handle_attachment.h',
35 'ipc_mojo_message_helper.cc', 35 'ipc_mojo_message_helper.cc',
36 'ipc_mojo_message_helper.h', 36 'ipc_mojo_message_helper.h',
37 'ipc_mojo_param_traits.cc', 37 'ipc_mojo_param_traits.cc',
38 'ipc_mojo_param_traits.h', 38 'ipc_mojo_param_traits.h',
39 'ipc_message_pipe_reader.cc', 39 'ipc_message_pipe_reader.cc',
40 'ipc_message_pipe_reader.h', 40 'ipc_message_pipe_reader.h',
41 'ipc.mojom', 41 'ipc.mojom',
42 'scoped_ipc_support.cc',
43 'scoped_ipc_support.h',
44 ], 42 ],
45 # TODO(gregoryd): direct_dependent_settings should be shared with the 43 # TODO(gregoryd): direct_dependent_settings should be shared with the
46 # 64-bit target, but it doesn't work due to a bug in gyp 44 # 64-bit target, but it doesn't work due to a bug in gyp
47 'direct_dependent_settings': { 45 'direct_dependent_settings': {
48 'include_dirs': [ 46 'include_dirs': [
49 '..', 47 '..',
50 ], 48 ],
51 }, 49 },
52 }, 50 },
53 { 51 {
52 'target_name': 'ipc_mojo_support',
53 'type': 'static_library',
54 'dependencies': [
55 '../../base/base.gyp:base',
56 '../../mojo/mojo_edk.gyp:mojo_system_impl',
57 ],
58 'sources': [
59 'scoped_ipc_support.cc',
60 'scoped_ipc_support.h',
61 ],
62 },
63 {
54 'target_name': 'ipc_mojo_unittests', 64 'target_name': 'ipc_mojo_unittests',
55 'type': '<(gtest_target_type)', 65 'type': '<(gtest_target_type)',
56 'dependencies': [ 66 'dependencies': [
57 '../ipc.gyp:ipc', 67 '../ipc.gyp:ipc',
58 '../ipc.gyp:test_support_ipc', 68 '../ipc.gyp:test_support_ipc',
59 '../../base/base.gyp:base', 69 '../../base/base.gyp:base',
60 '../../base/base.gyp:base_i18n', 70 '../../base/base.gyp:base_i18n',
61 '../../base/base.gyp:test_support_base', 71 '../../base/base.gyp:test_support_base',
62 '../../mojo/mojo_edk.gyp:mojo_common_test_support', 72 '../../mojo/mojo_edk.gyp:mojo_common_test_support',
63 '../../mojo/mojo_edk.gyp:mojo_system_impl', 73 '../../mojo/mojo_edk.gyp:mojo_system_impl',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 '../../build/isolate.gypi', 126 '../../build/isolate.gypi',
117 ], 127 ],
118 'sources': [ 128 'sources': [
119 'ipc_mojo_unittests.isolate', 129 'ipc_mojo_unittests.isolate',
120 ], 130 ],
121 }, 131 },
122 ], 132 ],
123 }], 133 }],
124 ], 134 ],
125 } 135 }
OLDNEW
« no previous file with comments | « ipc/mojo/BUILD.gn ('k') | ipc/mojo/scoped_ipc_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698