| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "lib/native_struct_serialization.h", | 65 "lib/native_struct_serialization.h", |
| 66 "lib/no_interface.cc", | 66 "lib/no_interface.cc", |
| 67 "lib/pipe_control_message_handler.cc", | 67 "lib/pipe_control_message_handler.cc", |
| 68 "lib/pipe_control_message_handler.h", | 68 "lib/pipe_control_message_handler.h", |
| 69 "lib/pipe_control_message_handler_delegate.h", | 69 "lib/pipe_control_message_handler_delegate.h", |
| 70 "lib/pipe_control_message_proxy.cc", | 70 "lib/pipe_control_message_proxy.cc", |
| 71 "lib/pipe_control_message_proxy.h", | 71 "lib/pipe_control_message_proxy.h", |
| 72 "lib/router.cc", | 72 "lib/router.cc", |
| 73 "lib/router.h", | 73 "lib/router.h", |
| 74 "lib/scoped_interface_endpoint_handle.cc", | 74 "lib/scoped_interface_endpoint_handle.cc", |
| 75 "lib/scoped_interface_endpoint_handle.h", | |
| 76 "lib/serialization.h", | 75 "lib/serialization.h", |
| 77 "lib/serialization_context.cc", | 76 "lib/serialization_context.cc", |
| 78 "lib/serialization_context.h", | 77 "lib/serialization_context.h", |
| 79 "lib/serialization_forward.h", | 78 "lib/serialization_forward.h", |
| 80 "lib/serialization_util.cc", | 79 "lib/serialization_util.cc", |
| 81 "lib/serialization_util.h", | 80 "lib/serialization_util.h", |
| 82 "lib/string_serialization.h", | 81 "lib/string_serialization.h", |
| 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", | 92 "lib/value_traits.h", |
| 94 "map.h", | 93 "map.h", |
| 95 "message.h", | 94 "message.h", |
| 96 "message_filter.h", | 95 "message_filter.h", |
| 97 "native_struct.h", | 96 "native_struct.h", |
| 98 "no_interface.h", | 97 "no_interface.h", |
| 98 "scoped_interface_endpoint_handle.h", |
| 99 "stl_converters.h", | 99 "stl_converters.h", |
| 100 "string.h", | 100 "string.h", |
| 101 "string_traits.h", | 101 "string_traits.h", |
| 102 "string_traits_standard.h", | 102 "string_traits_standard.h", |
| 103 "string_traits_stl.h", | 103 "string_traits_stl.h", |
| 104 "string_traits_string_piece.h", | 104 "string_traits_string_piece.h", |
| 105 "strong_binding.h", | 105 "strong_binding.h", |
| 106 "struct_ptr.h", | 106 "struct_ptr.h", |
| 107 "type_converter.h", | 107 "type_converter.h", |
| 108 ] | 108 ] |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 "wtf_array.h", | 152 "wtf_array.h", |
| 153 ] | 153 ] |
| 154 | 154 |
| 155 public_deps = [ | 155 public_deps = [ |
| 156 ":bindings", | 156 ":bindings", |
| 157 "//third_party/WebKit/Source/wtf", | 157 "//third_party/WebKit/Source/wtf", |
| 158 ] | 158 ] |
| 159 | 159 |
| 160 public_configs = [ "//third_party/WebKit/Source:config" ] | 160 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 161 } | 161 } |
| OLD | NEW |