| 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 "interface_ptr.h", | 12 "interface_ptr.h", |
| 12 "interface_ptr_info.h", | 13 "interface_ptr_info.h", |
| 13 "interface_request.h", | 14 "interface_request.h", |
| 14 "lib/array_internal.cc", | 15 "lib/array_internal.cc", |
| 15 "lib/array_internal.h", | 16 "lib/array_internal.h", |
| 16 "lib/array_serialization.h", | 17 "lib/array_serialization.h", |
| 17 "lib/bindings_internal.h", | 18 "lib/bindings_internal.h", |
| 18 "lib/bindings_serialization.cc", | 19 "lib/bindings_serialization.cc", |
| 19 "lib/bindings_serialization.h", | 20 "lib/bindings_serialization.h", |
| 20 "lib/bounds_checker.cc", | 21 "lib/bounds_checker.cc", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 34 "lib/map_data_internal.h", | 35 "lib/map_data_internal.h", |
| 35 "lib/map_internal.h", | 36 "lib/map_internal.h", |
| 36 "lib/map_serialization.h", | 37 "lib/map_serialization.h", |
| 37 "lib/message.cc", | 38 "lib/message.cc", |
| 38 "lib/message_builder.cc", | 39 "lib/message_builder.cc", |
| 39 "lib/message_builder.h", | 40 "lib/message_builder.h", |
| 40 "lib/message_filter.cc", | 41 "lib/message_filter.cc", |
| 41 "lib/message_header_validator.cc", | 42 "lib/message_header_validator.cc", |
| 42 "lib/message_header_validator.h", | 43 "lib/message_header_validator.h", |
| 43 "lib/message_internal.h", | 44 "lib/message_internal.h", |
| 45 "lib/message_queue.cc", |
| 46 "lib/message_queue.h", |
| 44 "lib/no_interface.cc", | 47 "lib/no_interface.cc", |
| 45 "lib/router.cc", | 48 "lib/router.cc", |
| 46 "lib/router.h", | 49 "lib/router.h", |
| 47 "lib/string_serialization.cc", | 50 "lib/string_serialization.cc", |
| 48 "lib/string_serialization.h", | 51 "lib/string_serialization.h", |
| 49 "lib/union_accessor.h", | 52 "lib/union_accessor.h", |
| 50 "lib/validate_params.h", | 53 "lib/validate_params.h", |
| 51 "lib/validation_errors.cc", | 54 "lib/validation_errors.cc", |
| 52 "lib/validation_errors.h", | 55 "lib/validation_errors.h", |
| 53 "lib/validation_util.cc", | 56 "lib/validation_util.cc", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 77 sources = [ | 80 sources = [ |
| 78 "callback.h", | 81 "callback.h", |
| 79 "lib/callback_internal.h", | 82 "lib/callback_internal.h", |
| 80 "lib/shared_data.h", | 83 "lib/shared_data.h", |
| 81 "lib/shared_ptr.h", | 84 "lib/shared_ptr.h", |
| 82 "lib/template_util.h", | 85 "lib/template_util.h", |
| 83 ] | 86 ] |
| 84 | 87 |
| 85 mojo_sdk_deps = [ "mojo/public/cpp/system" ] | 88 mojo_sdk_deps = [ "mojo/public/cpp/system" ] |
| 86 } | 89 } |
| OLD | NEW |