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