| OLD | NEW |
| 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("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 9 | 9 |
| 10 component("ipc") { | 10 component("ipc") { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "ipc_channel_handle.h", | 24 "ipc_channel_handle.h", |
| 25 "ipc_channel_mojo.cc", | 25 "ipc_channel_mojo.cc", |
| 26 "ipc_channel_mojo.h", | 26 "ipc_channel_mojo.h", |
| 27 "ipc_channel_nacl.cc", | 27 "ipc_channel_nacl.cc", |
| 28 "ipc_channel_nacl.h", | 28 "ipc_channel_nacl.h", |
| 29 "ipc_channel_proxy.cc", | 29 "ipc_channel_proxy.cc", |
| 30 "ipc_channel_proxy.h", | 30 "ipc_channel_proxy.h", |
| 31 "ipc_channel_reader.cc", | 31 "ipc_channel_reader.cc", |
| 32 "ipc_channel_reader.h", | 32 "ipc_channel_reader.h", |
| 33 "ipc_descriptors.h", | 33 "ipc_descriptors.h", |
| 34 "ipc_endpoint.cc", | |
| 35 "ipc_endpoint.h", | |
| 36 "ipc_export.h", | 34 "ipc_export.h", |
| 37 "ipc_listener.h", | 35 "ipc_listener.h", |
| 38 "ipc_logging.cc", | 36 "ipc_logging.cc", |
| 39 "ipc_logging.h", | 37 "ipc_logging.h", |
| 40 "ipc_message.cc", | 38 "ipc_message.cc", |
| 41 "ipc_message.h", | 39 "ipc_message.h", |
| 42 "ipc_message_attachment.cc", | 40 "ipc_message_attachment.cc", |
| 43 "ipc_message_attachment.h", | 41 "ipc_message_attachment.h", |
| 44 "ipc_message_attachment_set.cc", | 42 "ipc_message_attachment_set.cc", |
| 45 "ipc_message_attachment_set.h", | 43 "ipc_message_attachment_set.h", |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 ":ipc", | 251 ":ipc", |
| 254 ] | 252 ] |
| 255 deps = [ | 253 deps = [ |
| 256 "//base", | 254 "//base", |
| 257 "//base/test:test_support", | 255 "//base/test:test_support", |
| 258 "//mojo/edk/test:test_support", | 256 "//mojo/edk/test:test_support", |
| 259 "//testing/gtest", | 257 "//testing/gtest", |
| 260 ] | 258 ] |
| 261 } | 259 } |
| 262 } | 260 } |
| OLD | NEW |