Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Side by Side Diff: mojo/public/cpp/bindings/BUILD.gn

Issue 1832703002: Mojo: Simplify typemap usage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-bindings-variant-import
Patch Set: add missing mash dependency Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/mojom_bindings_generator_explicit.gypi ('k') | mojo/public/cpp/bindings/tests/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « mojo/mojom_bindings_generator_explicit.gypi ('k') | mojo/public/cpp/bindings/tests/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698