| 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     "allocation_scope.h", |  | 
| 8     "array.h", | 7     "array.h", | 
| 9     "buffer.h", | 8     "buffer.h", | 
| 10     "callback.h", | 9     "callback.h", | 
| 11     "error_handler.h", | 10     "error_handler.h", | 
| 12     "interface_ptr.h", | 11     "interface_ptr.h", | 
| 13     "message.h", | 12     "message.h", | 
| 14     "message_filter.h", | 13     "message_filter.h", | 
| 15     "no_interface.h", | 14     "no_interface.h", | 
| 16     "passable.h", | 15     "string.h", | 
|  | 16     "struct_ptr.h", | 
| 17     "sync_dispatcher.h", | 17     "sync_dispatcher.h", | 
| 18     "type_converter.h", | 18     "type_converter.h", | 
| 19     "lib/array.cc", | 19     "lib/array_internal.cc", | 
| 20     "lib/array_internal.h", | 20     "lib/array_internal.h", | 
| 21     "lib/array_internal.cc", | 21     "lib/array_serialization.h", | 
| 22     "lib/bindings_internal.h", | 22     "lib/bindings_internal.h", | 
| 23     "lib/bindings_serialization.cc", | 23     "lib/bindings_serialization.cc", | 
| 24     "lib/bindings_serialization.h", | 24     "lib/bindings_serialization.h", | 
| 25     "lib/buffer.cc", |  | 
| 26     "lib/callback_internal.h", | 25     "lib/callback_internal.h", | 
| 27     "lib/connector.cc", | 26     "lib/connector.cc", | 
| 28     "lib/connector.h", | 27     "lib/connector.h", | 
| 29     "lib/filter_chain.cc", | 28     "lib/filter_chain.cc", | 
| 30     "lib/filter_chain.h", | 29     "lib/filter_chain.h", | 
| 31     "lib/fixed_buffer.cc", | 30     "lib/fixed_buffer.cc", | 
| 32     "lib/fixed_buffer.h", | 31     "lib/fixed_buffer.h", | 
| 33     "lib/message.cc", | 32     "lib/message.cc", | 
| 34     "lib/message_builder.cc", | 33     "lib/message_builder.cc", | 
| 35     "lib/message_builder.h", | 34     "lib/message_builder.h", | 
| 36     "lib/message_filter.cc", | 35     "lib/message_filter.cc", | 
| 37     "lib/message_internal.h", | 36     "lib/message_internal.h", | 
| 38     "lib/message_queue.cc", | 37     "lib/message_queue.cc", | 
| 39     "lib/message_queue.h", | 38     "lib/message_queue.h", | 
| 40     "lib/no_interface.cc", | 39     "lib/no_interface.cc", | 
| 41     "lib/router.cc", | 40     "lib/router.cc", | 
| 42     "lib/router.h", | 41     "lib/router.h", | 
| 43     "lib/scratch_buffer.cc", |  | 
| 44     "lib/scratch_buffer.h", |  | 
| 45     "lib/shared_data.h", | 42     "lib/shared_data.h", | 
| 46     "lib/shared_ptr.h", | 43     "lib/shared_ptr.h", | 
|  | 44     "lib/string_serialization.cc", | 
|  | 45     "lib/string_serialization.h", | 
| 47     "lib/sync_dispatcher.cc", | 46     "lib/sync_dispatcher.cc", | 
|  | 47     "lib/template_util.h", | 
| 48   ] | 48   ] | 
| 49 } | 49 } | 
| OLD | NEW | 
|---|