Chromium Code Reviews| 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 static_library("bindings") { | 5 component("bindings") { |
| 6 sources = [ | 6 sources = [ |
| 7 "array.h", | 7 "array.h", |
| 8 "array_data_view.h", | 8 "array_data_view.h", |
| 9 "array_traits.h", | 9 "array_traits.h", |
| 10 "array_traits_carray.h", | 10 "array_traits_carray.h", |
| 11 "array_traits_standard.h", | 11 "array_traits_standard.h", |
| 12 "array_traits_stl.h", | 12 "array_traits_stl.h", |
| 13 "associated_binding.h", | 13 "associated_binding.h", |
| 14 "associated_binding_set.h", | 14 "associated_binding_set.h", |
| 15 "associated_group.h", | 15 "associated_group.h", |
| 16 "associated_group_controller.h", | 16 "associated_group_controller.h", |
| 17 "associated_interface_ptr.h", | 17 "associated_interface_ptr.h", |
| 18 "associated_interface_ptr_info.h", | 18 "associated_interface_ptr_info.h", |
| 19 "associated_interface_request.h", | 19 "associated_interface_request.h", |
| 20 "binding.h", | 20 "binding.h", |
| 21 "binding_set.h", | 21 "binding_set.h", |
| 22 "bindings_export.h", | |
| 22 "connection_error_callback.h", | 23 "connection_error_callback.h", |
| 23 "connector.h", | 24 "connector.h", |
| 24 "enum_traits.h", | 25 "enum_traits.h", |
| 25 "filter_chain.h", | 26 "filter_chain.h", |
| 26 "interface_data_view.h", | 27 "interface_data_view.h", |
| 27 "interface_endpoint_client.h", | 28 "interface_endpoint_client.h", |
| 28 "interface_endpoint_controller.h", | 29 "interface_endpoint_controller.h", |
| 29 "interface_id.h", | 30 "interface_id.h", |
| 30 "interface_ptr.h", | 31 "interface_ptr.h", |
| 31 "interface_ptr_info.h", | 32 "interface_ptr_info.h", |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 133 ":struct_traits", | 134 ":struct_traits", |
| 134 "//base", | 135 "//base", |
| 135 "//ipc:param_traits", | 136 "//ipc:param_traits", |
| 136 "//mojo/public/cpp/system", | 137 "//mojo/public/cpp/system", |
| 137 ] | 138 ] |
| 138 | 139 |
| 139 deps = [ | 140 deps = [ |
| 140 "//base", | 141 "//base", |
| 141 "//mojo/public/interfaces/bindings:bindings_cpp_sources", | 142 "//mojo/public/interfaces/bindings:bindings_cpp_sources", |
| 142 ] | 143 ] |
| 144 | |
| 145 defines = [ "MOJO_CPP_BINDINGS_IMPLEMENTATION" ] | |
|
dcheng
2016/09/21 23:21:03
Originally, I only componentized bindings, but it
| |
| 143 } | 146 } |
| 144 | 147 |
| 145 source_set("struct_traits") { | 148 source_set("struct_traits") { |
| 146 sources = [ | 149 sources = [ |
| 147 "struct_traits.h", | 150 "struct_traits.h", |
| 148 ] | 151 ] |
| 149 } | 152 } |
| 150 | 153 |
| 151 if (!is_ios) { | 154 if (!is_ios) { |
| 152 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. | 155 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 165 ] | 168 ] |
| 166 | 169 |
| 167 public_deps = [ | 170 public_deps = [ |
| 168 ":bindings", | 171 ":bindings", |
| 169 "//third_party/WebKit/Source/wtf", | 172 "//third_party/WebKit/Source/wtf", |
| 170 ] | 173 ] |
| 171 | 174 |
| 172 public_configs = [ "//third_party/WebKit/Source:config" ] | 175 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 173 } | 176 } |
| 174 } | 177 } |
| OLD | NEW |