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

Side by Side Diff: chrome/chrome_common.gypi

Issue 2177123003: Move SearchProvider implementation into Blink and make it a no-op. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 4 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 | « chrome/chrome_browser.gypi ('k') | chrome/chrome_renderer.gypi » ('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 (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 'variables': { 6 'variables': {
7 # File lists shared with GN build. 7 # File lists shared with GN build.
8 'chrome_common_sources': [ 8 'chrome_common_sources': [
9 'common/all_messages.h', 9 'common/all_messages.h',
10 'common/attrition_experiments.h', 10 'common/attrition_experiments.h',
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 'common/render_messages.h', 76 'common/render_messages.h',
77 'common/resource_usage_reporter_type_converters.cc', 77 'common/resource_usage_reporter_type_converters.cc',
78 'common/resource_usage_reporter_type_converters.h', 78 'common/resource_usage_reporter_type_converters.h',
79 'common/safe_browsing/safebrowsing_messages.h', 79 'common/safe_browsing/safebrowsing_messages.h',
80 'common/search/instant_types.cc', 80 'common/search/instant_types.cc',
81 'common/search/instant_types.h', 81 'common/search/instant_types.h',
82 'common/search/ntp_logging_events.h', 82 'common/search/ntp_logging_events.h',
83 'common/search/search_types.h', 83 'common/search/search_types.h',
84 'common/search/search_urls.cc', 84 'common/search/search_urls.cc',
85 'common/search/search_urls.h', 85 'common/search/search_urls.h',
86 'common/search_provider.h',
87 'common/secure_origin_whitelist.cc', 86 'common/secure_origin_whitelist.cc',
88 'common/secure_origin_whitelist.h', 87 'common/secure_origin_whitelist.h',
89 'common/spellcheck_bdict_language.h', 88 'common/spellcheck_bdict_language.h',
90 'common/spellcheck_common.cc', 89 'common/spellcheck_common.cc',
91 'common/spellcheck_common.h', 90 'common/spellcheck_common.h',
92 'common/spellcheck_marker.h', 91 'common/spellcheck_marker.h',
93 'common/spellcheck_messages.h', 92 'common/spellcheck_messages.h',
94 'common/spellcheck_result.h', 93 'common/spellcheck_result.h',
95 'common/ssl_insecure_content.cc', 94 'common/ssl_insecure_content.cc',
96 'common/ssl_insecure_content.h', 95 'common/ssl_insecure_content.h',
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 'common/safe_browsing/download_file_types.proto', 633 'common/safe_browsing/download_file_types.proto',
635 'common/safe_browsing/permission_report.proto', 634 'common/safe_browsing/permission_report.proto',
636 ], 635 ],
637 'variables': { 636 'variables': {
638 'proto_in_dir': 'common/safe_browsing', 637 'proto_in_dir': 'common/safe_browsing',
639 'proto_out_dir': 'chrome/common/safe_browsing', 638 'proto_out_dir': 'chrome/common/safe_browsing',
640 }, 639 },
641 'includes': [ '../build/protoc.gypi' ], 640 'includes': [ '../build/protoc.gypi' ],
642 }, 641 },
643 { 642 {
644 # GN version: //chrome/common:search_provider_mojom
645 'target_name': 'common_search_provider_mojom',
646 'type': 'static_library',
647 'sources': [
648 'common/search_provider.mojom',
649 ],
650 'variables': {
651 'mojom_typemaps': [
652 '../url/mojo/gurl.typemap',
653 ],
654 },
655 'dependencies': [
656 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
657 '../url/url.gyp:url_mojom',
658 ],
659 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
660 },
661 {
662 'target_name': 'common_mojo_bindings_mojom', 643 'target_name': 'common_mojo_bindings_mojom',
663 'type': 'none', 644 'type': 'none',
664 'variables': { 645 'variables': {
665 'mojom_files': [ 646 'mojom_files': [
666 'common/image_decoder.mojom', 647 'common/image_decoder.mojom',
667 'common/resource_usage_reporter.mojom', 648 'common/resource_usage_reporter.mojom',
668 'common/shell_handler_win.mojom', 649 'common/shell_handler_win.mojom',
669 ], 650 ],
670 'mojom_typemaps': [ 651 'mojom_typemaps': [
671 '../skia/public/interfaces/skbitmap.typemap', 652 '../skia/public/interfaces/skbitmap.typemap',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 ], 686 ],
706 'dependencies': [ 687 'dependencies': [
707 'installer_util', 688 'installer_util',
708 '../base/base.gyp:base', 689 '../base/base.gyp:base',
709 ], 690 ],
710 }, 691 },
711 ], 692 ],
712 }], 693 }],
713 ], 694 ],
714 } 695 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698