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

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

Issue 2034273002: Mojo C++ bindings: introduce mojo::WTFMap for blink bindings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed the code of adding enum key support to WTF::HashMap; which turned out to be non-trivial; wi… Created 4 years, 6 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/mojo_public.gyp ('k') | mojo/public/cpp/bindings/lib/array_serialization.h » ('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 "array_traits_standard.h", 9 "array_traits_standard.h",
10 "array_traits_stl.h", 10 "array_traits_stl.h",
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 } 146 }
147 147
148 if (!is_ios) { 148 if (!is_ios) {
149 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. 149 # TODO(yzshen): crbug.com/617718 Consider moving this into blink.
150 source_set("wtf_support") { 150 source_set("wtf_support") {
151 sources = [ 151 sources = [
152 "array_traits_wtf.h", 152 "array_traits_wtf.h",
153 "array_traits_wtf_vector.h", 153 "array_traits_wtf_vector.h",
154 "lib/string_traits_wtf.cc", 154 "lib/string_traits_wtf.cc",
155 "lib/wtf_serialization.h", 155 "lib/wtf_serialization.h",
156 "map_traits_wtf.h",
156 "string_traits_wtf.h", 157 "string_traits_wtf.h",
157 "wtf_array.h", 158 "wtf_array.h",
159 "wtf_map.h",
158 ] 160 ]
159 161
160 public_deps = [ 162 public_deps = [
161 ":bindings", 163 ":bindings",
162 "//third_party/WebKit/Source/wtf", 164 "//third_party/WebKit/Source/wtf",
163 ] 165 ]
164 166
165 public_configs = [ "//third_party/WebKit/Source:config" ] 167 public_configs = [ "//third_party/WebKit/Source:config" ]
166 } 168 }
167 } 169 }
OLDNEW
« no previous file with comments | « mojo/mojo_public.gyp ('k') | mojo/public/cpp/bindings/lib/array_serialization.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698