| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 mojom("client_channel") { | 8 mojom("client_channel") { |
| 9 sources = [ | 9 sources = [ |
| 10 "client_channel.mojom", | 10 "client_channel.mojom", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "ipc_channel_mojo_host.cc", | 21 "ipc_channel_mojo_host.cc", |
| 22 "ipc_channel_mojo_host.h", | 22 "ipc_channel_mojo_host.h", |
| 23 "ipc_message_pipe_reader.cc", | 23 "ipc_message_pipe_reader.cc", |
| 24 "ipc_message_pipe_reader.h", | 24 "ipc_message_pipe_reader.h", |
| 25 "ipc_mojo_bootstrap.cc", | 25 "ipc_mojo_bootstrap.cc", |
| 26 "ipc_mojo_bootstrap.h", | 26 "ipc_mojo_bootstrap.h", |
| 27 "ipc_mojo_handle_attachment.cc", | 27 "ipc_mojo_handle_attachment.cc", |
| 28 "ipc_mojo_handle_attachment.h", | 28 "ipc_mojo_handle_attachment.h", |
| 29 "ipc_mojo_message_helper.cc", | 29 "ipc_mojo_message_helper.cc", |
| 30 "ipc_mojo_message_helper.h", | 30 "ipc_mojo_message_helper.h", |
| 31 "ipc_mojo_param_traits.cc", | |
| 32 "ipc_mojo_param_traits.h", | |
| 33 "scoped_ipc_support.cc", | 31 "scoped_ipc_support.cc", |
| 34 "scoped_ipc_support.h", | 32 "scoped_ipc_support.h", |
| 35 ] | 33 ] |
| 36 | 34 |
| 37 defines = [ "IPC_MOJO_IMPLEMENTATION" ] | 35 defines = [ "IPC_MOJO_IMPLEMENTATION" ] |
| 38 | 36 |
| 39 deps = [ | 37 deps = [ |
| 40 "//base", | 38 "//base", |
| 41 "//base/third_party/dynamic_annotations", | 39 "//base/third_party/dynamic_annotations", |
| 42 "//ipc", | 40 "//ipc", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "//base/test:test_support_perf", | 79 "//base/test:test_support_perf", |
| 82 "//base/third_party/dynamic_annotations", | 80 "//base/third_party/dynamic_annotations", |
| 83 "//ipc", | 81 "//ipc", |
| 84 "//ipc:test_support", | 82 "//ipc:test_support", |
| 85 "//ipc/mojo", | 83 "//ipc/mojo", |
| 86 "//mojo/environment:chromium", | 84 "//mojo/environment:chromium", |
| 87 "//third_party/mojo/src/mojo/edk/system", | 85 "//third_party/mojo/src/mojo/edk/system", |
| 88 "//url", | 86 "//url", |
| 89 ] | 87 ] |
| 90 } | 88 } |
| OLD | NEW |