| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "mach_port_attachment_mac.cc", | 69 "mach_port_attachment_mac.cc", |
| 70 "mach_port_attachment_mac.h", | 70 "mach_port_attachment_mac.h", |
| 71 "mach_port_mac.cc", | 71 "mach_port_mac.cc", |
| 72 "mach_port_mac.h", | 72 "mach_port_mac.h", |
| 73 "message_filter.cc", | 73 "message_filter.cc", |
| 74 "message_filter.h", | 74 "message_filter.h", |
| 75 "message_filter_router.cc", | 75 "message_filter_router.cc", |
| 76 "message_filter_router.h", | 76 "message_filter_router.h", |
| 77 "message_router.cc", | 77 "message_router.cc", |
| 78 "message_router.h", | 78 "message_router.h", |
| 79 "mojo_event.cc", | |
| 80 "mojo_event.h", | |
| 81 "param_traits_log_macros.h", | 79 "param_traits_log_macros.h", |
| 82 "param_traits_macros.h", | 80 "param_traits_macros.h", |
| 83 "param_traits_read_macros.h", | 81 "param_traits_read_macros.h", |
| 84 "param_traits_write_macros.h", | 82 "param_traits_write_macros.h", |
| 85 "struct_constructor_macros.h", | 83 "struct_constructor_macros.h", |
| 86 "struct_destructor_macros.h", | 84 "struct_destructor_macros.h", |
| 87 ] | 85 ] |
| 88 | 86 |
| 89 if (is_nacl && !is_nacl_nonsfi) { | 87 if (is_nacl && !is_nacl_nonsfi) { |
| 90 sources -= [ "ipc_channel.cc" ] | 88 sources -= [ "ipc_channel.cc" ] |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 ":ipc", | 234 ":ipc", |
| 237 ] | 235 ] |
| 238 deps = [ | 236 deps = [ |
| 239 "//base", | 237 "//base", |
| 240 "//base/test:test_support", | 238 "//base/test:test_support", |
| 241 "//mojo/edk/test:test_support", | 239 "//mojo/edk/test:test_support", |
| 242 "//testing/gtest", | 240 "//testing/gtest", |
| 243 ] | 241 ] |
| 244 } | 242 } |
| 245 } | 243 } |
| OLD | NEW |