| 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 "associated_binding.h", | 8 "associated_binding.h", |
| 9 "associated_group.h", | 9 "associated_group.h", |
| 10 "associated_interface_ptr.h", | 10 "associated_interface_ptr.h", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 # serialization_forward.h. | 89 # serialization_forward.h. |
| 90 "lib/wtf_string_serialization.h", | 90 "lib/wtf_string_serialization.h", |
| 91 "map.h", | 91 "map.h", |
| 92 "message.h", | 92 "message.h", |
| 93 "message_filter.h", | 93 "message_filter.h", |
| 94 "no_interface.h", | 94 "no_interface.h", |
| 95 "stl_converters.h", | 95 "stl_converters.h", |
| 96 "string.h", | 96 "string.h", |
| 97 "strong_binding.h", | 97 "strong_binding.h", |
| 98 "struct_ptr.h", | 98 "struct_ptr.h", |
| 99 "struct_traits.h", | |
| 100 "type_converter.h", | 99 "type_converter.h", |
| 101 ] | 100 ] |
| 102 | 101 |
| 103 public_deps = [ | 102 public_deps = [ |
| 104 ":callback", | 103 ":callback", |
| 104 ":struct_traits", |
| 105 "//base", | 105 "//base", |
| 106 "//ipc:param_traits", | 106 "//ipc:param_traits", |
| 107 "//mojo/public/cpp/system", | 107 "//mojo/public/cpp/system", |
| 108 ] | 108 ] |
| 109 | 109 |
| 110 deps = [ | 110 deps = [ |
| 111 "//base", | 111 "//base", |
| 112 "//mojo/public/interfaces/bindings:bindings_cpp_sources", | 112 "//mojo/public/interfaces/bindings:bindings_cpp_sources", |
| 113 ] | 113 ] |
| 114 } | 114 } |
| 115 | 115 |
| 116 source_set("callback") { | 116 source_set("callback") { |
| 117 sources = [ | 117 sources = [ |
| 118 "callback.h", | 118 "callback.h", |
| 119 "lib/callback_internal.h", | 119 "lib/callback_internal.h", |
| 120 "lib/shared_data.h", | 120 "lib/shared_data.h", |
| 121 "lib/shared_ptr.h", | 121 "lib/shared_ptr.h", |
| 122 "lib/template_util.h", | 122 "lib/template_util.h", |
| 123 ] | 123 ] |
| 124 | 124 |
| 125 deps = [ | 125 deps = [ |
| 126 "//base", | 126 "//base", |
| 127 "//mojo/public/cpp/system", | 127 "//mojo/public/cpp/system", |
| 128 ] | 128 ] |
| 129 } | 129 } |
| 130 | 130 |
| 131 source_set("struct_traits") { |
| 132 sources = [ |
| 133 "struct_traits.h", |
| 134 ] |
| 135 } |
| 136 |
| 131 source_set("wtf_support") { | 137 source_set("wtf_support") { |
| 132 sources = [ | 138 sources = [ |
| 133 "lib/wtf_array_serialization.h", | 139 "lib/wtf_array_serialization.h", |
| 134 "lib/wtf_serialization.h", | 140 "lib/wtf_serialization.h", |
| 135 "lib/wtf_string_serialization.cc", | 141 "lib/wtf_string_serialization.cc", |
| 136 "lib/wtf_string_serialization.h", | 142 "lib/wtf_string_serialization.h", |
| 137 "wtf_array.h", | 143 "wtf_array.h", |
| 138 ] | 144 ] |
| 139 | 145 |
| 140 public_deps = [ | 146 public_deps = [ |
| 141 ":bindings", | 147 ":bindings", |
| 142 "//third_party/WebKit/Source/wtf", | 148 "//third_party/WebKit/Source/wtf", |
| 143 ] | 149 ] |
| 144 | 150 |
| 145 public_configs = [ "//third_party/WebKit/Source:config" ] | 151 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 146 } | 152 } |
| OLD | NEW |