| 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", |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "string_traits_stl.h", | 110 "string_traits_stl.h", |
| 111 "string_traits_string16.h", | 111 "string_traits_string16.h", |
| 112 "string_traits_string_piece.h", | 112 "string_traits_string_piece.h", |
| 113 "strong_binding.h", | 113 "strong_binding.h", |
| 114 "struct_ptr.h", | 114 "struct_ptr.h", |
| 115 "sync_handle_registry.h", | 115 "sync_handle_registry.h", |
| 116 "type_converter.h", | 116 "type_converter.h", |
| 117 ] | 117 ] |
| 118 | 118 |
| 119 public_deps = [ | 119 public_deps = [ |
| 120 ":callback", | |
| 121 ":struct_traits", | 120 ":struct_traits", |
| 122 "//base", | 121 "//base", |
| 123 "//ipc:param_traits", | 122 "//ipc:param_traits", |
| 124 "//mojo/public/cpp/system", | 123 "//mojo/public/cpp/system", |
| 125 ] | 124 ] |
| 126 | 125 |
| 127 deps = [ | 126 deps = [ |
| 128 "//base", | 127 "//base", |
| 129 "//mojo/public/interfaces/bindings:bindings_cpp_sources", | 128 "//mojo/public/interfaces/bindings:bindings_cpp_sources", |
| 130 ] | 129 ] |
| 131 } | 130 } |
| 132 | 131 |
| 133 source_set("callback") { | |
| 134 sources = [ | |
| 135 "callback.h", | |
| 136 ] | |
| 137 | |
| 138 public_deps = [ | |
| 139 "//base", | |
| 140 ] | |
| 141 } | |
| 142 | |
| 143 source_set("struct_traits") { | 132 source_set("struct_traits") { |
| 144 sources = [ | 133 sources = [ |
| 145 "struct_traits.h", | 134 "struct_traits.h", |
| 146 ] | 135 ] |
| 147 } | 136 } |
| 148 | 137 |
| 149 if (!is_ios) { | 138 if (!is_ios) { |
| 150 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. | 139 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. |
| 151 source_set("wtf_support") { | 140 source_set("wtf_support") { |
| 152 sources = [ | 141 sources = [ |
| 153 "array_traits_wtf.h", | 142 "array_traits_wtf.h", |
| 154 "array_traits_wtf_vector.h", | 143 "array_traits_wtf_vector.h", |
| 155 "lib/string_traits_wtf.cc", | 144 "lib/string_traits_wtf.cc", |
| 156 "lib/wtf_serialization.h", | 145 "lib/wtf_serialization.h", |
| 157 "map_traits_wtf.h", | 146 "map_traits_wtf.h", |
| 158 "string_traits_wtf.h", | 147 "string_traits_wtf.h", |
| 159 "wtf_array.h", | 148 "wtf_array.h", |
| 160 "wtf_map.h", | 149 "wtf_map.h", |
| 161 ] | 150 ] |
| 162 | 151 |
| 163 public_deps = [ | 152 public_deps = [ |
| 164 ":bindings", | 153 ":bindings", |
| 165 "//third_party/WebKit/Source/wtf", | 154 "//third_party/WebKit/Source/wtf", |
| 166 ] | 155 ] |
| 167 | 156 |
| 168 public_configs = [ "//third_party/WebKit/Source:config" ] | 157 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 169 } | 158 } |
| 170 } | 159 } |
| OLD | NEW |