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

Side by Side Diff: components/autofill.gypi

Issue 2007473004: [Autofill] Migrate ContentAutofillDriver<-->AutofillAgent IPCs to mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Initialize remote_interfaces_ in Init() Created 4 years, 5 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/autofill/core/common 8 # GN version: //components/autofill/core/common
9 'target_name': 'autofill_core_common', 9 'target_name': 'autofill_core_common',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 # GN version: //components/autofill/content/public/interfaces 388 # GN version: //components/autofill/content/public/interfaces
389 'target_name': 'autofill_content_mojo_bindings_mojom', 389 'target_name': 'autofill_content_mojo_bindings_mojom',
390 'type': 'none', 390 'type': 'none',
391 'variables': { 391 'variables': {
392 'mojom_files': [ 392 'mojom_files': [
393 'autofill/content/public/interfaces/autofill_agent.mojom', 393 'autofill/content/public/interfaces/autofill_agent.mojom',
394 'autofill/content/public/interfaces/autofill_driver.mojom', 394 'autofill/content/public/interfaces/autofill_driver.mojom',
395 ], 395 ],
396 'mojom_typemaps': [ 396 'mojom_typemaps': [
397 'autofill/content/public/cpp/autofill_types.typemap', 397 'autofill/content/public/cpp/autofill_types.typemap',
398 '<(DEPTH)/mojo/common/common_custom_types.typemap',
399 '<(DEPTH)/ui/gfx/geometry/mojo/geometry.typemap',
400 '<(DEPTH)/url/mojo/gurl.typemap',
398 ], 401 ],
399 'use_new_wrapper_types': 'false', 402 'use_new_wrapper_types': 'false',
400 }, 403 },
401 'include_dirs': [ 404 'include_dirs': [
402 '..', 405 '..',
403 ], 406 ],
404 'includes': [ 407 'includes': [
405 '../mojo/mojom_bindings_generator_explicit.gypi', 408 '../mojo/mojom_bindings_generator_explicit.gypi',
406 ], 409 ],
407 }, 410 },
408 { 411 {
409 # GN version: //components/autofill/content/public/interfaces 412 # GN version: //components/autofill/content/public/interfaces
410 'target_name': 'autofill_content_mojo_bindings', 413 'target_name': 'autofill_content_mojo_bindings',
411 'type': 'static_library', 414 'type': 'static_library',
412 'export_dependent_settings': [ 415 'export_dependent_settings': [
413 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 416 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
417 '../ui/gfx/gfx.gyp:mojo_geometry_bindings',
418 '../url/url.gyp:url_mojom',
419 'autofill_content_types_mojo_bindings',
414 ], 420 ],
415 'dependencies': [ 421 'dependencies': [
416 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 422 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
423 '../ui/gfx/gfx.gyp:mojo_geometry_bindings',
424 '../url/url.gyp:url_mojom',
417 'autofill_content_mojo_bindings_mojom', 425 'autofill_content_mojo_bindings_mojom',
418 'autofill_content_types_mojo_bindings', 426 'autofill_content_types_mojo_bindings',
419 ], 427 ],
420 }, 428 },
421 { 429 {
422 # GN version: //content/autofill/content/common 430 # GN version: //content/autofill/content/common
423 'target_name': 'autofill_content_common', 431 'target_name': 'autofill_content_common',
424 'type': 'static_library', 432 'type': 'static_library',
425 'dependencies': [ 433 'dependencies': [
426 'autofill_core_common', 434 'autofill_core_common',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 'include_dirs': [ 495 'include_dirs': [
488 '..', 496 '..',
489 ], 497 ],
490 'dependencies': [ 498 'dependencies': [
491 '../base/base.gyp:base', 499 '../base/base.gyp:base',
492 '../base/base.gyp:base_i18n', 500 '../base/base.gyp:base_i18n',
493 '../content/content.gyp:content_browser', 501 '../content/content.gyp:content_browser',
494 '../content/content.gyp:content_common', 502 '../content/content.gyp:content_common',
495 '../google_apis/google_apis.gyp:google_apis', 503 '../google_apis/google_apis.gyp:google_apis',
496 '../ipc/ipc.gyp:ipc', 504 '../ipc/ipc.gyp:ipc',
505 '../mojo/mojo_base.gyp:mojo_common_lib',
497 '../net/net.gyp:net', 506 '../net/net.gyp:net',
498 '../skia/skia.gyp:skia', 507 '../skia/skia.gyp:skia',
499 '../sql/sql.gyp:sql', 508 '../sql/sql.gyp:sql',
500 '../third_party/icu/icu.gyp:icui18n', 509 '../third_party/icu/icu.gyp:icui18n',
501 '../third_party/icu/icu.gyp:icuuc', 510 '../third_party/icu/icu.gyp:icuuc',
502 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', 511 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
503 '../ui/base/ui_base.gyp:ui_base', 512 '../ui/base/ui_base.gyp:ui_base',
504 '../ui/display/display.gyp:display', 513 '../ui/display/display.gyp:display',
505 '../ui/gfx/gfx.gyp:gfx', 514 '../ui/gfx/gfx.gyp:gfx',
506 '../ui/gfx/gfx.gyp:gfx_geometry', 515 '../ui/gfx/gfx.gyp:gfx_geometry',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 'type': 'static_library', 551 'type': 'static_library',
543 'include_dirs': [ 552 'include_dirs': [
544 '..', 553 '..',
545 ], 554 ],
546 'dependencies': [ 555 'dependencies': [
547 '../base/base.gyp:base', 556 '../base/base.gyp:base',
548 '../content/content.gyp:content_common', 557 '../content/content.gyp:content_common',
549 '../content/content.gyp:content_renderer', 558 '../content/content.gyp:content_renderer',
550 '../google_apis/google_apis.gyp:google_apis', 559 '../google_apis/google_apis.gyp:google_apis',
551 '../ipc/ipc.gyp:ipc', 560 '../ipc/ipc.gyp:ipc',
561 '../mojo/mojo_base.gyp:mojo_common_lib',
552 '../net/net.gyp:net', 562 '../net/net.gyp:net',
553 '../skia/skia.gyp:skia', 563 '../skia/skia.gyp:skia',
554 '../third_party/re2/re2.gyp:re2', 564 '../third_party/re2/re2.gyp:re2',
555 '../third_party/WebKit/public/blink.gyp:blink', 565 '../third_party/WebKit/public/blink.gyp:blink',
556 '../ui/base/ui_base.gyp:ui_base', 566 '../ui/base/ui_base.gyp:ui_base',
557 'autofill_content_common', 567 'autofill_content_common',
558 'autofill_content_mojo_bindings', 568 'autofill_content_mojo_bindings',
559 'autofill_core_common', 569 'autofill_core_common',
560 'components_strings.gyp:components_strings', 570 'components_strings.gyp:components_strings',
561 ], 571 ],
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 ], 649 ],
640 }, 650 },
641 'includes': [ 651 'includes': [
642 '../ios/web/js_compile_checked.gypi', 652 '../ios/web/js_compile_checked.gypi',
643 ], 653 ],
644 }, 654 },
645 ], 655 ],
646 }], 656 }],
647 ], 657 ],
648 } 658 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698