| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "ipc_channel_proxy.cc", | 48 "ipc_channel_proxy.cc", |
| 49 "ipc_channel_proxy.h", | 49 "ipc_channel_proxy.h", |
| 50 "ipc_channel_reader.cc", | 50 "ipc_channel_reader.cc", |
| 51 "ipc_channel_reader.h", | 51 "ipc_channel_reader.h", |
| 52 "ipc_channel_win.cc", | 52 "ipc_channel_win.cc", |
| 53 "ipc_channel_win.h", | 53 "ipc_channel_win.h", |
| 54 "ipc_descriptors.h", | 54 "ipc_descriptors.h", |
| 55 "ipc_endpoint.cc", | 55 "ipc_endpoint.cc", |
| 56 "ipc_endpoint.h", | 56 "ipc_endpoint.h", |
| 57 "ipc_export.h", | 57 "ipc_export.h", |
| 58 "ipc_handle_win.cc", | |
| 59 "ipc_handle_win.h", | |
| 60 "ipc_listener.h", | 58 "ipc_listener.h", |
| 61 "ipc_logging.cc", | 59 "ipc_logging.cc", |
| 62 "ipc_logging.h", | 60 "ipc_logging.h", |
| 63 "ipc_message.cc", | 61 "ipc_message.cc", |
| 64 "ipc_message.h", | 62 "ipc_message.h", |
| 65 "ipc_message_attachment.cc", | 63 "ipc_message_attachment.cc", |
| 66 "ipc_message_attachment.h", | 64 "ipc_message_attachment.h", |
| 67 "ipc_message_attachment_set.cc", | 65 "ipc_message_attachment_set.cc", |
| 68 "ipc_message_attachment_set.h", | 66 "ipc_message_attachment_set.h", |
| 69 "ipc_message_generator.cc", | 67 "ipc_message_generator.cc", |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 public_deps = [ | 301 public_deps = [ |
| 304 ":ipc", | 302 ":ipc", |
| 305 ] | 303 ] |
| 306 deps = [ | 304 deps = [ |
| 307 "//base", | 305 "//base", |
| 308 "//base/test:test_support", | 306 "//base/test:test_support", |
| 309 "//testing/gtest", | 307 "//testing/gtest", |
| 310 ] | 308 ] |
| 311 } | 309 } |
| 312 } | 310 } |
| OLD | NEW |