| 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 "array_traits.h", | 8 "array_traits.h", |
| 9 "array_traits_standard.h", | 9 "array_traits_standard.h", |
| 10 "array_traits_stl.h", | 10 "array_traits_stl.h", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 "lib/filter_chain.cc", | 38 "lib/filter_chain.cc", |
| 39 "lib/filter_chain.h", | 39 "lib/filter_chain.h", |
| 40 "lib/fixed_buffer.cc", | 40 "lib/fixed_buffer.cc", |
| 41 "lib/fixed_buffer.h", | 41 "lib/fixed_buffer.h", |
| 42 "lib/interface_endpoint_client.cc", | 42 "lib/interface_endpoint_client.cc", |
| 43 "lib/interface_endpoint_client.h", | 43 "lib/interface_endpoint_client.h", |
| 44 "lib/interface_endpoint_controller.h", | 44 "lib/interface_endpoint_controller.h", |
| 45 "lib/interface_id.h", | 45 "lib/interface_id.h", |
| 46 "lib/interface_ptr_state.h", | 46 "lib/interface_ptr_state.h", |
| 47 "lib/map_data_internal.h", | 47 "lib/map_data_internal.h", |
| 48 "lib/map_internal.h", | |
| 49 "lib/map_serialization.h", | 48 "lib/map_serialization.h", |
| 50 "lib/message.cc", | 49 "lib/message.cc", |
| 51 "lib/message_buffer.cc", | 50 "lib/message_buffer.cc", |
| 52 "lib/message_buffer.h", | 51 "lib/message_buffer.h", |
| 53 "lib/message_builder.cc", | 52 "lib/message_builder.cc", |
| 54 "lib/message_builder.h", | 53 "lib/message_builder.h", |
| 55 "lib/message_filter.cc", | 54 "lib/message_filter.cc", |
| 56 "lib/message_header_validator.cc", | 55 "lib/message_header_validator.cc", |
| 57 "lib/message_header_validator.h", | 56 "lib/message_header_validator.h", |
| 58 "lib/message_internal.h", | 57 "lib/message_internal.h", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 83 "lib/sync_handle_registry.cc", | 82 "lib/sync_handle_registry.cc", |
| 84 "lib/sync_handle_registry.h", | 83 "lib/sync_handle_registry.h", |
| 85 "lib/sync_handle_watcher.cc", | 84 "lib/sync_handle_watcher.cc", |
| 86 "lib/sync_handle_watcher.h", | 85 "lib/sync_handle_watcher.h", |
| 87 "lib/union_accessor.h", | 86 "lib/union_accessor.h", |
| 88 "lib/validate_params.h", | 87 "lib/validate_params.h", |
| 89 "lib/validation_errors.cc", | 88 "lib/validation_errors.cc", |
| 90 "lib/validation_errors.h", | 89 "lib/validation_errors.h", |
| 91 "lib/validation_util.cc", | 90 "lib/validation_util.cc", |
| 92 "lib/validation_util.h", | 91 "lib/validation_util.h", |
| 93 "lib/value_traits.h", | |
| 94 "map.h", | 92 "map.h", |
| 95 "map_traits.h", | 93 "map_traits.h", |
| 96 "map_traits_standard.h", | 94 "map_traits_standard.h", |
| 97 "map_traits_stl.h", | 95 "map_traits_stl.h", |
| 98 "message.h", | 96 "message.h", |
| 99 "message_filter.h", | 97 "message_filter.h", |
| 100 "native_struct.h", | 98 "native_struct.h", |
| 101 "no_interface.h", | 99 "no_interface.h", |
| 102 "scoped_interface_endpoint_handle.h", | 100 "scoped_interface_endpoint_handle.h", |
| 103 "stl_converters.h", | 101 "stl_converters.h", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 ] | 157 ] |
| 160 | 158 |
| 161 public_deps = [ | 159 public_deps = [ |
| 162 ":bindings", | 160 ":bindings", |
| 163 "//third_party/WebKit/Source/wtf", | 161 "//third_party/WebKit/Source/wtf", |
| 164 ] | 162 ] |
| 165 | 163 |
| 166 public_configs = [ "//third_party/WebKit/Source:config" ] | 164 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 167 } | 165 } |
| 168 } | 166 } |
| OLD | NEW |