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

Unified Diff: components/autofill.gypi

Issue 1999623002: [Autofill] Add typemap for autofill:FormFieldData and autofill::FormData. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments from dcheng 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/BUILD.gn ('k') | components/autofill/content/public/cpp/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill.gypi
diff --git a/components/autofill.gypi b/components/autofill.gypi
index 7d4ab6bccd6e9a90421476cd227237e750212271..26e98a3a3ca089bb065bbe659b8721c60bf81841 100644
--- a/components/autofill.gypi
+++ b/components/autofill.gypi
@@ -314,6 +314,64 @@
['OS != "ios"', {
'targets': [
{
+ # GN version: //components/autofill/content/public/interfaces:types
+ 'target_name': 'autofill_content_types_mojo_bindings_mojom',
+ 'type': 'none',
+ 'variables': {
+ 'mojom_files': [
+ 'autofill/content/public/interfaces/autofill_types.mojom',
+ ],
+ 'mojom_typemaps': [
+ 'autofill/content/public/cpp/autofill_types.typemap',
+ '<(DEPTH)/url/mojo/gurl.typemap',
+ ],
+ },
+ 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ],
+ 'dependencies': [
+ '../mojo/mojo_public.gyp:mojo_cpp_bindings',
+ ],
+ },
+ {
+ # GN version: //components/autofill/content/public/interfaces:types
+ 'target_name': 'autofill_content_types_mojo_bindings',
+ 'type': 'static_library',
+ 'sources': [
+ 'autofill/content/public/cpp/autofill_types_struct_traits.cc'
+ ],
+ 'export_dependent_settings': [
+ '../url/url.gyp:url_mojom',
+ ],
+ 'dependencies': [
+ '../mojo/mojo_public.gyp:mojo_cpp_bindings',
+ '../url/url.gyp:url_mojom',
+ 'autofill_content_types_mojo_bindings_mojom',
+ ],
+ },
+ {
+ # GN version: //components/autofill/content/public/interfaces:test_types
+ 'target_name': 'autofill_content_test_types_mojo_bindings',
+ 'type': 'static_library',
+ 'variables': {
+ 'mojom_typemaps': [
+ 'autofill/content/public/cpp/autofill_types.typemap',
+ '<(DEPTH)/url/mojo/gurl.typemap',
+ ],
+ },
+ 'sources': [
+ 'autofill/content/public/interfaces/test_autofill_types.mojom',
+ ],
+ 'export_dependent_settings': [
+ '../url/url.gyp:url_mojom',
+ 'autofill_content_types_mojo_bindings',
+ ],
+ 'dependencies': [
+ '../mojo/mojo_public.gyp:mojo_cpp_bindings',
+ '../url/url.gyp:url_mojom',
+ 'autofill_content_types_mojo_bindings',
+ ],
+ 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
+ },
+ {
# GN version: //components/autofill/content/public/interfaces
'target_name': 'autofill_content_mojo_bindings_mojom',
'type': 'none',
@@ -322,6 +380,9 @@
'autofill/content/public/interfaces/autofill_agent.mojom',
'autofill/content/public/interfaces/autofill_driver.mojom',
],
+ 'mojom_typemaps': [
+ 'autofill/content/public/cpp/autofill_types.typemap',
+ ],
},
'include_dirs': [
'..',
@@ -340,6 +401,7 @@
'dependencies': [
'../mojo/mojo_public.gyp:mojo_cpp_bindings',
'autofill_content_mojo_bindings_mojom',
+ 'autofill_content_types_mojo_bindings',
],
},
{
« no previous file with comments | « components/BUILD.gn ('k') | components/autofill/content/public/cpp/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698