| 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_carray.h", | 9 "array_traits_carray.h", |
| 10 "array_traits_standard.h", | 10 "array_traits_standard.h", |
| 11 "array_traits_stl.h", | 11 "array_traits_stl.h", |
| 12 "associated_binding.h", | 12 "associated_binding.h", |
| 13 "associated_group.h", | 13 "associated_group.h", |
| 14 "associated_interface_ptr.h", | 14 "associated_interface_ptr.h", |
| 15 "associated_interface_ptr_info.h", | 15 "associated_interface_ptr_info.h", |
| 16 "associated_interface_request.h", | 16 "associated_interface_request.h", |
| 17 "binding.h", | 17 "binding.h", |
| 18 "binding_set.h", | 18 "binding_set.h", |
| 19 "enum_traits.h", | |
| 20 "interface_ptr.h", | 19 "interface_ptr.h", |
| 21 "interface_ptr_info.h", | 20 "interface_ptr_info.h", |
| 22 "interface_ptr_set.h", | 21 "interface_ptr_set.h", |
| 23 "interface_request.h", | 22 "interface_request.h", |
| 24 "lib/array_internal.cc", | 23 "lib/array_internal.cc", |
| 25 "lib/array_internal.h", | 24 "lib/array_internal.h", |
| 26 "lib/array_serialization.h", | 25 "lib/array_serialization.h", |
| 27 "lib/associated_group.cc", | 26 "lib/associated_group.cc", |
| 28 "lib/associated_interface_ptr_state.h", | 27 "lib/associated_interface_ptr_state.h", |
| 29 "lib/binding_state.h", | 28 "lib/binding_state.h", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 ] | 125 ] |
| 127 | 126 |
| 128 deps = [ | 127 deps = [ |
| 129 "//base", | 128 "//base", |
| 130 "//mojo/public/interfaces/bindings:bindings_cpp_sources", | 129 "//mojo/public/interfaces/bindings:bindings_cpp_sources", |
| 131 ] | 130 ] |
| 132 } | 131 } |
| 133 | 132 |
| 134 source_set("struct_traits") { | 133 source_set("struct_traits") { |
| 135 sources = [ | 134 sources = [ |
| 135 "enum_traits.h", |
| 136 "struct_traits.h", | 136 "struct_traits.h", |
| 137 ] | 137 ] |
| 138 } | 138 } |
| 139 | 139 |
| 140 if (!is_ios) { | 140 if (!is_ios) { |
| 141 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. | 141 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. |
| 142 source_set("wtf_support") { | 142 source_set("wtf_support") { |
| 143 sources = [ | 143 sources = [ |
| 144 "array_traits_wtf.h", | 144 "array_traits_wtf.h", |
| 145 "array_traits_wtf_vector.h", | 145 "array_traits_wtf_vector.h", |
| 146 "lib/string_traits_wtf.cc", | 146 "lib/string_traits_wtf.cc", |
| 147 "lib/wtf_serialization.h", | 147 "lib/wtf_serialization.h", |
| 148 "map_traits_wtf.h", | 148 "map_traits_wtf.h", |
| 149 "string_traits_wtf.h", | 149 "string_traits_wtf.h", |
| 150 "wtf_array.h", | 150 "wtf_array.h", |
| 151 "wtf_map.h", | 151 "wtf_map.h", |
| 152 ] | 152 ] |
| 153 | 153 |
| 154 public_deps = [ | 154 public_deps = [ |
| 155 ":bindings", | 155 ":bindings", |
| 156 "//third_party/WebKit/Source/wtf", | 156 "//third_party/WebKit/Source/wtf", |
| 157 ] | 157 ] |
| 158 | 158 |
| 159 public_configs = [ "//third_party/WebKit/Source:config" ] | 159 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 160 } | 160 } |
| 161 } | 161 } |
| OLD | NEW |