| 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 "associated_binding.h", | 9 "associated_binding.h", |
| 10 "associated_group.h", | 10 "associated_group.h", |
| 11 "associated_interface_ptr.h", | 11 "associated_interface_ptr.h", |
| 12 "associated_interface_ptr_info.h", | 12 "associated_interface_ptr_info.h", |
| 13 "associated_interface_request.h", | 13 "associated_interface_request.h", |
| 14 "binding.h", | 14 "binding.h", |
| 15 "binding_set.h", | 15 "binding_set.h", |
| 16 "interface_ptr.h", | 16 "interface_ptr.h", |
| 17 "interface_ptr_info.h", | 17 "interface_ptr_info.h", |
| 18 "interface_ptr_set.h", | 18 "interface_ptr_set.h", |
| 19 "interface_request.h", | 19 "interface_request.h", |
| 20 "lib/array_internal.cc", | 20 "lib/array_internal.cc", |
| 21 "lib/array_internal.h", | 21 "lib/array_internal.h", |
| 22 "lib/array_serialization.h", | 22 "lib/array_serialization.h", |
| 23 "lib/array_serialization_traits.h", | |
| 24 "lib/array_traits_standard.h", | 23 "lib/array_traits_standard.h", |
| 25 "lib/associated_group.cc", | 24 "lib/associated_group.cc", |
| 26 "lib/associated_interface_ptr_state.h", | 25 "lib/associated_interface_ptr_state.h", |
| 27 "lib/binding_state.h", | 26 "lib/binding_state.h", |
| 28 "lib/bindings_internal.h", | 27 "lib/bindings_internal.h", |
| 29 "lib/bounds_checker.cc", | 28 "lib/bounds_checker.cc", |
| 30 "lib/bounds_checker.h", | 29 "lib/bounds_checker.h", |
| 31 "lib/buffer.h", | 30 "lib/buffer.h", |
| 32 "lib/connector.cc", | 31 "lib/connector.cc", |
| 33 "lib/connector.h", | 32 "lib/connector.h", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 source_set("struct_traits") { | 140 source_set("struct_traits") { |
| 142 sources = [ | 141 sources = [ |
| 143 "struct_traits.h", | 142 "struct_traits.h", |
| 144 ] | 143 ] |
| 145 } | 144 } |
| 146 | 145 |
| 147 source_set("wtf_support") { | 146 source_set("wtf_support") { |
| 148 sources = [ | 147 sources = [ |
| 149 "lib/array_traits_wtf.h", | 148 "lib/array_traits_wtf.h", |
| 150 "lib/string_traits_wtf.cc", | 149 "lib/string_traits_wtf.cc", |
| 151 "lib/wtf_array_serialization.h", | |
| 152 "lib/wtf_serialization.h", | 150 "lib/wtf_serialization.h", |
| 153 "lib/wtf_string_serialization.cc", | 151 "lib/wtf_string_serialization.cc", |
| 154 "lib/wtf_string_serialization.h", | 152 "lib/wtf_string_serialization.h", |
| 155 "string_traits_wtf.h", | 153 "string_traits_wtf.h", |
| 156 "wtf_array.h", | 154 "wtf_array.h", |
| 157 ] | 155 ] |
| 158 | 156 |
| 159 public_deps = [ | 157 public_deps = [ |
| 160 ":bindings", | 158 ":bindings", |
| 161 "//third_party/WebKit/Source/wtf", | 159 "//third_party/WebKit/Source/wtf", |
| 162 ] | 160 ] |
| 163 | 161 |
| 164 public_configs = [ "//third_party/WebKit/Source:config" ] | 162 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 165 } | 163 } |
| OLD | NEW |