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