| Index: mojo/public/cpp/bindings/BUILD.gn
|
| diff --git a/mojo/public/cpp/bindings/BUILD.gn b/mojo/public/cpp/bindings/BUILD.gn
|
| index 56b11bfd2975a4c8e3c80f3a617c82154bca2866..429f9b7dcf75365101520d7e616dea45619705fa 100644
|
| --- a/mojo/public/cpp/bindings/BUILD.gn
|
| +++ b/mojo/public/cpp/bindings/BUILD.gn
|
| @@ -80,6 +80,10 @@ source_set("bindings") {
|
| "lib/validation_util.cc",
|
| "lib/validation_util.h",
|
| "lib/value_traits.h",
|
| +
|
| + # Include the .h but not the .cc file. The .h file is used by
|
| + # serialization_forward.h.
|
| + "lib/wtf_string_serialization.h",
|
| "map.h",
|
| "message.h",
|
| "message_filter.h",
|
| @@ -120,3 +124,18 @@ source_set("callback") {
|
| "//mojo/public/cpp/system",
|
| ]
|
| }
|
| +
|
| +source_set("wtf_support") {
|
| + sources = [
|
| + "lib/wtf_serialization.h",
|
| + "lib/wtf_string_serialization.cc",
|
| + "lib/wtf_string_serialization.h",
|
| + ]
|
| +
|
| + deps = [
|
| + ":bindings",
|
| + "//third_party/WebKit/Source/wtf",
|
| + ]
|
| +
|
| + public_configs = [ "//third_party/WebKit/Source:config" ]
|
| +}
|
|
|