| 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 source_set("bindings") { | 5 source_set("bindings") { |
| 6 sources = [ | 6 sources = [ |
| 7 "array.h", | 7 "array.h", |
| 8 "callback.h", | 8 "callback.h", |
| 9 "error_handler.h", | 9 "error_handler.h", |
| 10 "interface_ptr.h", | 10 "interface_ptr.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "lib/connector.cc", | 28 "lib/connector.cc", |
| 29 "lib/connector.h", | 29 "lib/connector.h", |
| 30 "lib/filter_chain.cc", | 30 "lib/filter_chain.cc", |
| 31 "lib/filter_chain.h", | 31 "lib/filter_chain.h", |
| 32 "lib/fixed_buffer.cc", | 32 "lib/fixed_buffer.cc", |
| 33 "lib/fixed_buffer.h", | 33 "lib/fixed_buffer.h", |
| 34 "lib/message.cc", | 34 "lib/message.cc", |
| 35 "lib/message_builder.cc", | 35 "lib/message_builder.cc", |
| 36 "lib/message_builder.h", | 36 "lib/message_builder.h", |
| 37 "lib/message_filter.cc", | 37 "lib/message_filter.cc", |
| 38 "lib/message_header_validator.cc", |
| 39 "lib/message_header_validator.h", |
| 38 "lib/message_internal.h", | 40 "lib/message_internal.h", |
| 39 "lib/message_queue.cc", | 41 "lib/message_queue.cc", |
| 40 "lib/message_queue.h", | 42 "lib/message_queue.h", |
| 41 "lib/no_interface.cc", | 43 "lib/no_interface.cc", |
| 42 "lib/router.cc", | 44 "lib/router.cc", |
| 43 "lib/router.h", | 45 "lib/router.h", |
| 44 "lib/shared_data.h", | 46 "lib/shared_data.h", |
| 45 "lib/shared_ptr.h", | 47 "lib/shared_ptr.h", |
| 46 "lib/string_serialization.cc", | 48 "lib/string_serialization.cc", |
| 47 "lib/string_serialization.h", | 49 "lib/string_serialization.h", |
| 48 "lib/sync_dispatcher.cc", | 50 "lib/sync_dispatcher.cc", |
| 49 "lib/template_util.h", | 51 "lib/template_util.h", |
| 50 "lib/validation_errors.cc", | 52 "lib/validation_errors.cc", |
| 51 "lib/validation_errors.h", | 53 "lib/validation_errors.h", |
| 52 ] | 54 ] |
| 53 } | 55 } |
| OLD | NEW |