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

Side by Side Diff: ipc/BUILD.gn

Issue 1286883003: Revert of IPC: Add attachment brokering support to the message header. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 | « no previous file | ipc/attachment_broker_privileged_win_unittest.cc » ('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 (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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 component("ipc") { 7 component("ipc") {
8 sources = [ 8 sources = [
9 "attachment_broker.cc", 9 "attachment_broker.cc",
10 "attachment_broker.h", 10 "attachment_broker.h",
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 "ipc_sync_message_filter.cc", 75 "ipc_sync_message_filter.cc",
76 "ipc_sync_message_filter.h", 76 "ipc_sync_message_filter.h",
77 "message_filter.cc", 77 "message_filter.cc",
78 "message_filter.h", 78 "message_filter.h",
79 "message_filter_router.cc", 79 "message_filter_router.cc",
80 "message_filter_router.h", 80 "message_filter_router.h",
81 "param_traits_log_macros.h", 81 "param_traits_log_macros.h",
82 "param_traits_macros.h", 82 "param_traits_macros.h",
83 "param_traits_read_macros.h", 83 "param_traits_read_macros.h",
84 "param_traits_write_macros.h", 84 "param_traits_write_macros.h",
85 "placeholder_brokerable_attachment.cc",
86 "placeholder_brokerable_attachment.h",
87 "struct_constructor_macros.h", 85 "struct_constructor_macros.h",
88 "struct_destructor_macros.h", 86 "struct_destructor_macros.h",
89 "unix_domain_socket_util.cc", 87 "unix_domain_socket_util.cc",
90 "unix_domain_socket_util.h", 88 "unix_domain_socket_util.h",
91 ] 89 ]
92 90
93 if (is_nacl) { 91 if (is_nacl) {
94 sources -= [ 92 sources -= [
95 "ipc_channel.cc", 93 "ipc_channel.cc",
96 "ipc_channel_posix.cc", 94 "ipc_channel_posix.cc",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 "ipc_channel_reader_unittest.cc", 133 "ipc_channel_reader_unittest.cc",
136 "ipc_channel_unittest.cc", 134 "ipc_channel_unittest.cc",
137 "ipc_fuzzing_tests.cc", 135 "ipc_fuzzing_tests.cc",
138 "ipc_message_attachment_set_posix_unittest.cc", 136 "ipc_message_attachment_set_posix_unittest.cc",
139 "ipc_message_unittest.cc", 137 "ipc_message_unittest.cc",
140 "ipc_message_utils_unittest.cc", 138 "ipc_message_utils_unittest.cc",
141 "ipc_send_fds_test.cc", 139 "ipc_send_fds_test.cc",
142 "ipc_sync_channel_unittest.cc", 140 "ipc_sync_channel_unittest.cc",
143 "ipc_sync_message_unittest.cc", 141 "ipc_sync_message_unittest.cc",
144 "ipc_sync_message_unittest.h", 142 "ipc_sync_message_unittest.h",
145 "ipc_test_message_generator.cc",
146 "ipc_test_message_generator.h",
147 "ipc_test_messages.h",
148 "sync_socket_unittest.cc", 143 "sync_socket_unittest.cc",
149 "unix_domain_socket_util_unittest.cc", 144 "unix_domain_socket_util_unittest.cc",
150 ] 145 ]
151 146
152 if (is_win || is_ios) { 147 if (is_win || is_ios) {
153 sources -= [ "unix_domain_socket_util_unittest.cc" ] 148 sources -= [ "unix_domain_socket_util_unittest.cc" ]
154 } 149 }
155 150
156 # TODO(brettw) hook up Android testing. 151 # TODO(brettw) hook up Android testing.
157 #if (is_android && gtest_target_type == "shared_library") { 152 #if (is_android && gtest_target_type == "shared_library") {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 "ipc_test_sink.cc", 215 "ipc_test_sink.cc",
221 "ipc_test_sink.h", 216 "ipc_test_sink.h",
222 ] 217 ]
223 deps = [ 218 deps = [
224 ":ipc", 219 ":ipc",
225 "//base", 220 "//base",
226 "//base/test:test_support", 221 "//base/test:test_support",
227 "//testing/gtest", 222 "//testing/gtest",
228 ] 223 ]
229 } 224 }
OLDNEW
« no previous file with comments | « no previous file | ipc/attachment_broker_privileged_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698