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