| 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("../../mojo_sdk.gni") | 5 import("../../mojo_sdk.gni") |
| 6 | 6 |
| 7 # This target provides source files and dependencies required for serializing | 7 # This target provides source files and dependencies required for serializing |
| 8 # mojom types and has no references to the rest of the mojo system. It needs to | 8 # mojom types and has no references to the rest of the mojo system. It needs to |
| 9 # be linked with an |Environment| implementation for logging. | 9 # be linked with an |Environment| implementation for logging. |
| 10 mojo_sdk_source_set("serialization") { | 10 mojo_sdk_source_set("serialization") { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 mojo_sdk_public_deps = [ | 48 mojo_sdk_public_deps = [ |
| 49 "mojo/public/cpp/environment", | 49 "mojo/public/cpp/environment", |
| 50 "mojo/public/cpp/system", | 50 "mojo/public/cpp/system", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| 53 | 53 |
| 54 mojo_sdk_source_set("bindings") { | 54 mojo_sdk_source_set("bindings") { |
| 55 sources = [ | 55 sources = [ |
| 56 "binding.h", | 56 "binding.h", |
| 57 "interface_handle.h", |
| 57 "interface_ptr.h", | 58 "interface_ptr.h", |
| 58 "interface_ptr_info.h", | |
| 59 "interface_request.h", | 59 "interface_request.h", |
| 60 "lib/connector.cc", | 60 "lib/connector.cc", |
| 61 "lib/connector.h", | 61 "lib/connector.h", |
| 62 "lib/control_message_handler.cc", | 62 "lib/control_message_handler.cc", |
| 63 "lib/control_message_handler.h", | 63 "lib/control_message_handler.h", |
| 64 "lib/control_message_proxy.cc", | 64 "lib/control_message_proxy.cc", |
| 65 "lib/control_message_proxy.h", | 65 "lib/control_message_proxy.h", |
| 66 "lib/interface_ptr_internal.h", | 66 "lib/interface_ptr_internal.h", |
| 67 "lib/message.cc", | 67 "lib/message.cc", |
| 68 "lib/message_builder.cc", | 68 "lib/message_builder.cc", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 93 sources = [ | 93 sources = [ |
| 94 "callback.h", | 94 "callback.h", |
| 95 "lib/callback_internal.h", | 95 "lib/callback_internal.h", |
| 96 "lib/shared_data.h", | 96 "lib/shared_data.h", |
| 97 "lib/shared_ptr.h", | 97 "lib/shared_ptr.h", |
| 98 "lib/template_util.h", | 98 "lib/template_util.h", |
| 99 ] | 99 ] |
| 100 | 100 |
| 101 mojo_sdk_deps = [ "mojo/public/cpp/system" ] | 101 mojo_sdk_deps = [ "mojo/public/cpp/system" ] |
| 102 } | 102 } |
| OLD | NEW |