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

Side by Side Diff: ipc/ipc.gypi

Issue 1532053002: use variadic macros/templates in IPC message implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: simplify Created 5 years 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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'ipc_target': 0, 8 'ipc_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 'ipc_message.cc', 62 'ipc_message.cc',
63 'ipc_message.h', 63 'ipc_message.h',
64 'ipc_message_attachment.cc', 64 'ipc_message_attachment.cc',
65 'ipc_message_attachment.h', 65 'ipc_message_attachment.h',
66 'ipc_message_attachment_set.cc', 66 'ipc_message_attachment_set.cc',
67 'ipc_message_attachment_set.h', 67 'ipc_message_attachment_set.h',
68 'ipc_message_generator.cc', 68 'ipc_message_generator.cc',
69 'ipc_message_generator.h', 69 'ipc_message_generator.h',
70 'ipc_message_macros.h', 70 'ipc_message_macros.h',
71 'ipc_message_start.h', 71 'ipc_message_start.h',
72 'ipc_message_templates.h',
73 'ipc_message_templates_impl.h',
72 'ipc_message_utils.cc', 74 'ipc_message_utils.cc',
73 'ipc_message_utils.h', 75 'ipc_message_utils.h',
74 'ipc_param_traits.h', 76 'ipc_param_traits.h',
75 'ipc_platform_file.cc', 77 'ipc_platform_file.cc',
76 'ipc_platform_file.h', 78 'ipc_platform_file.h',
77 'ipc_platform_file_attachment_posix.cc', 79 'ipc_platform_file_attachment_posix.cc',
78 'ipc_platform_file_attachment_posix.h', 80 'ipc_platform_file_attachment_posix.h',
79 'ipc_sender.h', 81 'ipc_sender.h',
80 'ipc_switches.cc', 82 'ipc_switches.cc',
81 'ipc_switches.h', 83 'ipc_switches.h',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 ['OS == "win" or OS == "ios"', { 123 ['OS == "win" or OS == "ios"', {
122 'sources!': [ 124 'sources!': [
123 'unix_domain_socket_util.cc', 125 'unix_domain_socket_util.cc',
124 ], 126 ],
125 }], 127 }],
126 ], 128 ],
127 }], 129 }],
128 ], 130 ],
129 }, 131 },
130 } 132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698