| Index: mojo/mojo_public.gyp
|
| diff --git a/mojo/mojo_public.gyp b/mojo/mojo_public.gyp
|
| index a02144a9436214d173a32a4cdb0efad2288a5b4b..86b1b40e0d9f77e03786d0745b37b6a7f6ef3ce9 100644
|
| --- a/mojo/mojo_public.gyp
|
| +++ b/mojo/mojo_public.gyp
|
| @@ -175,6 +175,9 @@
|
| 'public/cpp/bindings/lib/validation_util.cc',
|
| 'public/cpp/bindings/lib/validation_util.h',
|
| 'public/cpp/bindings/lib/value_traits.h',
|
| + # Include the .h but not the .cc file. The .h file is used by
|
| + # serialization_forward.h.
|
| + 'public/cpp/bindings/lib/wtf_string_serialization.h',
|
| 'public/cpp/bindings/message.h',
|
| 'public/cpp/bindings/message_filter.h',
|
| 'public/cpp/bindings/no_interface.h',
|
| @@ -192,6 +195,33 @@
|
| ],
|
| },
|
| {
|
| + # GN version: //mojo/public/cpp/bindings:wtf_support
|
| + 'target_name': 'mojo_cpp_bindings_wtf_support',
|
| + 'type': 'static_library',
|
| + 'include_dirs': [
|
| + '..'
|
| + ],
|
| + 'sources': [
|
| + 'public/cpp/bindings/lib/wtf_serialization.h',
|
| + 'public/cpp/bindings/lib/wtf_string_serialization.cc',
|
| + 'public/cpp/bindings/lib/wtf_string_serialization.h',
|
| + ],
|
| + 'dependencies': [
|
| + 'mojo_cpp_bindings',
|
| + '../third_party/WebKit/Source/config.gyp:config',
|
| + '../third_party/WebKit/Source/wtf/wtf.gyp:wtf',
|
| + ],
|
| + 'export_dependent_settings': [
|
| + 'mojo_cpp_bindings',
|
| + '../third_party/WebKit/Source/config.gyp:config',
|
| + ],
|
| + 'direct_dependent_settings': {
|
| + 'variables': {
|
| + 'clang_warning_flags_unset': [ '-Wglobal-constructors' ],
|
| + },
|
| + },
|
| + },
|
| + {
|
| # GN version: //mojo/message_pump
|
| 'target_name': 'mojo_message_pump_lib',
|
| 'type': '<(component)',
|
| @@ -513,6 +543,27 @@
|
| 'mojo_cpp_bindings',
|
| ],
|
| },
|
| + {
|
| + 'target_name': 'mojo_public_test_wtf_types',
|
| + 'type': 'static_library',
|
| + 'sources': [
|
| + 'public/interfaces/bindings/tests/test_wtf_types.mojom',
|
| + ],
|
| + 'includes': [ 'mojom_bindings_generator.gypi' ],
|
| + },
|
| + {
|
| + 'target_name': 'mojo_public_test_wtf_types_blink',
|
| + 'type': 'static_library',
|
| + 'variables': {
|
| + 'mojom_variant': 'blink',
|
| + 'for_blink': 'true',
|
| + },
|
| + 'sources': [
|
| + 'public/interfaces/bindings/tests/test_wtf_types.mojom',
|
| + ],
|
| + 'includes': [ 'mojom_bindings_generator.gypi' ],
|
| + 'dependencies': [ 'mojo_public_test_wtf_types' ],
|
| + },
|
| ],
|
| 'conditions': [
|
| ['OS == "android"', {
|
|
|