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

Side by Side Diff: ipc/BUILD.gn

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 import("//build/config/nacl/config.gni") 5 import("//build/config/nacl/config.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("ipc") { 8 component("ipc") {
9 sources = [ 9 sources = [
10 "attachment_broker.cc", 10 "attachment_broker.cc",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 "ipc_message.cc", 58 "ipc_message.cc",
59 "ipc_message.h", 59 "ipc_message.h",
60 "ipc_message_attachment.cc", 60 "ipc_message_attachment.cc",
61 "ipc_message_attachment.h", 61 "ipc_message_attachment.h",
62 "ipc_message_attachment_set.cc", 62 "ipc_message_attachment_set.cc",
63 "ipc_message_attachment_set.h", 63 "ipc_message_attachment_set.h",
64 "ipc_message_generator.cc", 64 "ipc_message_generator.cc",
65 "ipc_message_generator.h", 65 "ipc_message_generator.h",
66 "ipc_message_macros.h", 66 "ipc_message_macros.h",
67 "ipc_message_start.h", 67 "ipc_message_start.h",
68 "ipc_message_templates.h",
69 "ipc_message_templates_impl.h",
68 "ipc_message_utils.cc", 70 "ipc_message_utils.cc",
69 "ipc_message_utils.h", 71 "ipc_message_utils.h",
70 "ipc_platform_file.cc", 72 "ipc_platform_file.cc",
71 "ipc_platform_file.h", 73 "ipc_platform_file.h",
72 "ipc_platform_file_attachment_posix.cc", 74 "ipc_platform_file_attachment_posix.cc",
73 "ipc_platform_file_attachment_posix.h", 75 "ipc_platform_file_attachment_posix.h",
74 "ipc_sender.h", 76 "ipc_sender.h",
75 "ipc_switches.cc", 77 "ipc_switches.cc",
76 "ipc_switches.h", 78 "ipc_switches.h",
77 "ipc_sync_channel.cc", 79 "ipc_sync_channel.cc",
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 ] 253 ]
252 public_deps = [ 254 public_deps = [
253 ":ipc", 255 ":ipc",
254 ] 256 ]
255 deps = [ 257 deps = [
256 "//base", 258 "//base",
257 "//base/test:test_support", 259 "//base/test:test_support",
258 "//testing/gtest", 260 "//testing/gtest",
259 ] 261 ]
260 } 262 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698