| 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", |
| 10 "array_traits_stl.h", |
| 9 "associated_binding.h", | 11 "associated_binding.h", |
| 10 "associated_group.h", | 12 "associated_group.h", |
| 11 "associated_interface_ptr.h", | 13 "associated_interface_ptr.h", |
| 12 "associated_interface_ptr_info.h", | 14 "associated_interface_ptr_info.h", |
| 13 "associated_interface_request.h", | 15 "associated_interface_request.h", |
| 14 "binding.h", | 16 "binding.h", |
| 15 "binding_set.h", | 17 "binding_set.h", |
| 16 "interface_ptr.h", | 18 "interface_ptr.h", |
| 17 "interface_ptr_info.h", | 19 "interface_ptr_info.h", |
| 18 "interface_ptr_set.h", | 20 "interface_ptr_set.h", |
| 19 "interface_request.h", | 21 "interface_request.h", |
| 20 "lib/array_internal.cc", | 22 "lib/array_internal.cc", |
| 21 "lib/array_internal.h", | 23 "lib/array_internal.h", |
| 22 "lib/array_serialization.h", | 24 "lib/array_serialization.h", |
| 23 "lib/array_traits_standard.h", | |
| 24 "lib/associated_group.cc", | 25 "lib/associated_group.cc", |
| 25 "lib/associated_interface_ptr_state.h", | 26 "lib/associated_interface_ptr_state.h", |
| 26 "lib/binding_state.h", | 27 "lib/binding_state.h", |
| 27 "lib/bindings_internal.h", | 28 "lib/bindings_internal.h", |
| 28 "lib/bounds_checker.cc", | 29 "lib/bounds_checker.cc", |
| 29 "lib/bounds_checker.h", | 30 "lib/bounds_checker.h", |
| 30 "lib/buffer.h", | 31 "lib/buffer.h", |
| 31 "lib/connector.cc", | 32 "lib/connector.cc", |
| 32 "lib/connector.h", | 33 "lib/connector.h", |
| 33 "lib/control_message_handler.cc", | 34 "lib/control_message_handler.cc", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "lib/value_traits.h", | 93 "lib/value_traits.h", |
| 93 "map.h", | 94 "map.h", |
| 94 "message.h", | 95 "message.h", |
| 95 "message_filter.h", | 96 "message_filter.h", |
| 96 "native_struct.h", | 97 "native_struct.h", |
| 97 "no_interface.h", | 98 "no_interface.h", |
| 98 "stl_converters.h", | 99 "stl_converters.h", |
| 99 "string.h", | 100 "string.h", |
| 100 "string_traits.h", | 101 "string_traits.h", |
| 101 "string_traits_standard.h", | 102 "string_traits_standard.h", |
| 103 "string_traits_stl.h", |
| 102 "string_traits_string_piece.h", | 104 "string_traits_string_piece.h", |
| 103 "strong_binding.h", | 105 "strong_binding.h", |
| 104 "struct_ptr.h", | 106 "struct_ptr.h", |
| 105 "type_converter.h", | 107 "type_converter.h", |
| 106 ] | 108 ] |
| 107 | 109 |
| 108 public_deps = [ | 110 public_deps = [ |
| 109 ":callback", | 111 ":callback", |
| 110 ":struct_traits", | 112 ":struct_traits", |
| 111 "//base", | 113 "//base", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 135 } | 137 } |
| 136 | 138 |
| 137 source_set("struct_traits") { | 139 source_set("struct_traits") { |
| 138 sources = [ | 140 sources = [ |
| 139 "struct_traits.h", | 141 "struct_traits.h", |
| 140 ] | 142 ] |
| 141 } | 143 } |
| 142 | 144 |
| 143 source_set("wtf_support") { | 145 source_set("wtf_support") { |
| 144 sources = [ | 146 sources = [ |
| 145 "lib/array_traits_wtf.h", | 147 "array_traits_wtf.h", |
| 146 "lib/string_traits_wtf.cc", | 148 "lib/string_traits_wtf.cc", |
| 147 "lib/wtf_serialization.h", | 149 "lib/wtf_serialization.h", |
| 148 "string_traits_wtf.h", | 150 "string_traits_wtf.h", |
| 149 "wtf_array.h", | 151 "wtf_array.h", |
| 150 ] | 152 ] |
| 151 | 153 |
| 152 public_deps = [ | 154 public_deps = [ |
| 153 ":bindings", | 155 ":bindings", |
| 154 "//third_party/WebKit/Source/wtf", | 156 "//third_party/WebKit/Source/wtf", |
| 155 ] | 157 ] |
| 156 | 158 |
| 157 public_configs = [ "//third_party/WebKit/Source:config" ] | 159 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 158 } | 160 } |
| OLD | NEW |