| 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 static_library("bindings") { | 5 static_library("bindings") { |
| 6 sources = [ | 6 sources = [ |
| 7 "array.h", | 7 "array.h", |
| 8 "array_data_view.h", |
| 8 "array_traits.h", | 9 "array_traits.h", |
| 9 "array_traits_carray.h", | 10 "array_traits_carray.h", |
| 10 "array_traits_standard.h", | 11 "array_traits_standard.h", |
| 11 "array_traits_stl.h", | 12 "array_traits_stl.h", |
| 12 "associated_binding.h", | 13 "associated_binding.h", |
| 13 "associated_group.h", | 14 "associated_group.h", |
| 14 "associated_group_controller.h", | 15 "associated_group_controller.h", |
| 15 "associated_interface_ptr.h", | 16 "associated_interface_ptr.h", |
| 16 "associated_interface_ptr_info.h", | 17 "associated_interface_ptr_info.h", |
| 17 "associated_interface_request.h", | 18 "associated_interface_request.h", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "lib/template_util.h", | 88 "lib/template_util.h", |
| 88 "lib/union_accessor.h", | 89 "lib/union_accessor.h", |
| 89 "lib/validate_params.h", | 90 "lib/validate_params.h", |
| 90 "lib/validation_context.cc", | 91 "lib/validation_context.cc", |
| 91 "lib/validation_context.h", | 92 "lib/validation_context.h", |
| 92 "lib/validation_errors.cc", | 93 "lib/validation_errors.cc", |
| 93 "lib/validation_errors.h", | 94 "lib/validation_errors.h", |
| 94 "lib/validation_util.cc", | 95 "lib/validation_util.cc", |
| 95 "lib/validation_util.h", | 96 "lib/validation_util.h", |
| 96 "map.h", | 97 "map.h", |
| 98 "map_data_view.h", |
| 97 "map_traits.h", | 99 "map_traits.h", |
| 98 "map_traits_standard.h", | 100 "map_traits_standard.h", |
| 99 "map_traits_stl.h", | 101 "map_traits_stl.h", |
| 100 "message.h", | 102 "message.h", |
| 101 "message_filter.h", | 103 "message_filter.h", |
| 102 "message_header_validator.h", | 104 "message_header_validator.h", |
| 103 "native_enum.h", | 105 "native_enum.h", |
| 104 "native_struct.h", | 106 "native_struct.h", |
| 107 "native_struct_data_view.h", |
| 105 "no_interface.h", | 108 "no_interface.h", |
| 106 "pipe_control_message_handler.h", | 109 "pipe_control_message_handler.h", |
| 107 "pipe_control_message_handler_delegate.h", | 110 "pipe_control_message_handler_delegate.h", |
| 108 "pipe_control_message_proxy.h", | 111 "pipe_control_message_proxy.h", |
| 109 "scoped_interface_endpoint_handle.h", | 112 "scoped_interface_endpoint_handle.h", |
| 110 "stl_converters.h", | 113 "stl_converters.h", |
| 111 "string.h", | 114 "string.h", |
| 115 "string_data_view.h", |
| 112 "string_traits.h", | 116 "string_traits.h", |
| 113 "string_traits_standard.h", | 117 "string_traits_standard.h", |
| 114 "string_traits_stl.h", | 118 "string_traits_stl.h", |
| 115 "string_traits_string16.h", | 119 "string_traits_string16.h", |
| 116 "string_traits_string_piece.h", | 120 "string_traits_string_piece.h", |
| 117 "strong_binding.h", | 121 "strong_binding.h", |
| 118 "struct_ptr.h", | 122 "struct_ptr.h", |
| 119 "sync_call_restrictions.h", | 123 "sync_call_restrictions.h", |
| 120 "sync_handle_registry.h", | 124 "sync_handle_registry.h", |
| 121 "sync_handle_watcher.h", | 125 "sync_handle_watcher.h", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 ] | 162 ] |
| 159 | 163 |
| 160 public_deps = [ | 164 public_deps = [ |
| 161 ":bindings", | 165 ":bindings", |
| 162 "//third_party/WebKit/Source/wtf", | 166 "//third_party/WebKit/Source/wtf", |
| 163 ] | 167 ] |
| 164 | 168 |
| 165 public_configs = [ "//third_party/WebKit/Source:config" ] | 169 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 166 } | 170 } |
| 167 } | 171 } |
| OLD | NEW |