| 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 mojo_sdk_source_set("bindings") { | 7 mojo_sdk_source_set("bindings") { |
| 8 sources = [ | 8 sources = [ |
| 9 "array.h", | 9 "array.h", |
| 10 "binding.h", | 10 "binding.h", |
| 11 "error_handler.h", | 11 "error_handler.h", |
| 12 "interface_ptr.h", |
| 12 "interface_ptr_info.h", | 13 "interface_ptr_info.h", |
| 13 "interface_ptr.h", | 14 "interface_request.h", |
| 14 "map.h", | |
| 15 "message.h", | |
| 16 "message_filter.h", | |
| 17 "no_interface.h", | |
| 18 "strong_binding.h", | |
| 19 "string.h", | |
| 20 "struct_ptr.h", | |
| 21 "type_converter.h", | |
| 22 "lib/array_internal.cc", | 15 "lib/array_internal.cc", |
| 23 "lib/array_internal.h", | 16 "lib/array_internal.h", |
| 24 "lib/array_serialization.h", | 17 "lib/array_serialization.h", |
| 25 "lib/bindings_internal.h", | 18 "lib/bindings_internal.h", |
| 26 "lib/bindings_serialization.cc", | 19 "lib/bindings_serialization.cc", |
| 27 "lib/bindings_serialization.h", | 20 "lib/bindings_serialization.h", |
| 28 "lib/bounds_checker.cc", | 21 "lib/bounds_checker.cc", |
| 29 "lib/bounds_checker.h", | 22 "lib/bounds_checker.h", |
| 30 "lib/buffer.h", | 23 "lib/buffer.h", |
| 31 "lib/connector.cc", | 24 "lib/connector.cc", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 48 "lib/message_queue.h", | 41 "lib/message_queue.h", |
| 49 "lib/no_interface.cc", | 42 "lib/no_interface.cc", |
| 50 "lib/router.cc", | 43 "lib/router.cc", |
| 51 "lib/router.h", | 44 "lib/router.h", |
| 52 "lib/string_serialization.cc", | 45 "lib/string_serialization.cc", |
| 53 "lib/string_serialization.h", | 46 "lib/string_serialization.h", |
| 54 "lib/union_accessor.h", | 47 "lib/union_accessor.h", |
| 55 "lib/validate_params.h", | 48 "lib/validate_params.h", |
| 56 "lib/validation_errors.cc", | 49 "lib/validation_errors.cc", |
| 57 "lib/validation_errors.h", | 50 "lib/validation_errors.h", |
| 51 "map.h", |
| 52 "message.h", |
| 53 "message_filter.h", |
| 54 "no_interface.h", |
| 55 "string.h", |
| 56 "strong_binding.h", |
| 57 "struct_ptr.h", |
| 58 "type_converter.h", |
| 58 ] | 59 ] |
| 59 | 60 |
| 60 deps = [ | 61 deps = [ |
| 61 ":callback", | 62 ":callback", |
| 62 ] | 63 ] |
| 63 | 64 |
| 64 mojo_sdk_deps = [ | 65 mojo_sdk_deps = [ |
| 65 "mojo/public/cpp/environment", | 66 "mojo/public/cpp/environment", |
| 66 "mojo/public/cpp/system", | 67 "mojo/public/cpp/system", |
| 67 ] | 68 ] |
| 68 } | 69 } |
| 69 | 70 |
| 70 mojo_sdk_source_set("callback") { | 71 mojo_sdk_source_set("callback") { |
| 71 sources = [ | 72 sources = [ |
| 72 "callback.h", | 73 "callback.h", |
| 73 "lib/callback_internal.h", | 74 "lib/callback_internal.h", |
| 74 "lib/template_util.h", | |
| 75 "lib/shared_data.h", | 75 "lib/shared_data.h", |
| 76 "lib/shared_ptr.h", | 76 "lib/shared_ptr.h", |
| 77 "lib/template_util.h", |
| 77 ] | 78 ] |
| 78 | 79 |
| 79 mojo_sdk_deps = [ "mojo/public/cpp/system" ] | 80 mojo_sdk_deps = [ "mojo/public/cpp/system" ] |
| 80 } | 81 } |
| OLD | NEW |