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

Side by Side Diff: chrome/chrome_common.gypi

Issue 2072613003: Convert GetSearchProviderInstallState to Mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Small twiddles 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 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 '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 26 matching lines...) Expand all
37 'common/content_restriction.h', 37 'common/content_restriction.h',
38 'common/content_settings_pattern_serializer.cc', 38 'common/content_settings_pattern_serializer.cc',
39 'common/content_settings_pattern_serializer.h', 39 'common/content_settings_pattern_serializer.h',
40 'common/crash_keys.cc', 40 'common/crash_keys.cc',
41 'common/crash_keys.h', 41 'common/crash_keys.h',
42 'common/custom_handlers/protocol_handler.cc', 42 'common/custom_handlers/protocol_handler.cc',
43 'common/custom_handlers/protocol_handler.h', 43 'common/custom_handlers/protocol_handler.h',
44 'common/descriptors_android.h', 44 'common/descriptors_android.h',
45 'common/ini_parser.cc', 45 'common/ini_parser.cc',
46 'common/ini_parser.h', 46 'common/ini_parser.h',
47 'common/install_state_traits.h',
47 'common/instant_types.cc', 48 'common/instant_types.cc',
48 'common/instant_types.h', 49 'common/instant_types.h',
49 'common/logging_chrome.cc', 50 'common/logging_chrome.cc',
50 'common/logging_chrome.h', 51 'common/logging_chrome.h',
51 'common/mac/app_shim_launch.h', 52 'common/mac/app_shim_launch.h',
52 'common/mac/app_shim_messages.h', 53 'common/mac/app_shim_messages.h',
53 'common/mac/cfbundle_blocker.h', 54 'common/mac/cfbundle_blocker.h',
54 'common/mac/cfbundle_blocker.mm', 55 'common/mac/cfbundle_blocker.mm',
55 'common/mac/launchd.h', 56 'common/mac/launchd.h',
56 'common/mac/launchd.mm', 57 'common/mac/launchd.mm',
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 'common/safe_browsing/download_file_types.proto', 638 'common/safe_browsing/download_file_types.proto',
638 'common/safe_browsing/permission_report.proto', 639 'common/safe_browsing/permission_report.proto',
639 ], 640 ],
640 'variables': { 641 'variables': {
641 'proto_in_dir': 'common/safe_browsing', 642 'proto_in_dir': 'common/safe_browsing',
642 'proto_out_dir': 'chrome/common/safe_browsing', 643 'proto_out_dir': 'chrome/common/safe_browsing',
643 }, 644 },
644 'includes': [ '../build/protoc.gypi' ], 645 'includes': [ '../build/protoc.gypi' ],
645 }, 646 },
646 { 647 {
648 # GN version: //chrome/common:search_provider_mojom
649 'target_name': 'common_search_provider_mojom',
650 'type': 'static_library',
651 'sources': [
652 'common/search_provider.mojom',
653 ],
654 'variables': {
655 'mojom_typemaps': [
656 '../url/mojo/gurl.typemap',
657 'common/search_provider.typemap',
658 ],
659 },
660 'dependencies': [
661 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
662 '../url/url.gyp:url_mojom',
663 ],
664 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
665 },
666 {
647 'target_name': 'common_mojo_bindings_mojom', 667 'target_name': 'common_mojo_bindings_mojom',
648 'type': 'none', 668 'type': 'none',
649 'variables': { 669 'variables': {
650 'mojom_files': [ 670 'mojom_files': [
651 'common/image_decoder.mojom', 671 'common/image_decoder.mojom',
652 'common/resource_usage_reporter.mojom', 672 'common/resource_usage_reporter.mojom',
653 ], 673 ],
654 'mojom_typemaps': [ 674 'mojom_typemaps': [
655 '../skia/public/interfaces/skbitmap.typemap', 675 '../skia/public/interfaces/skbitmap.typemap',
656 ], 676 ],
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 ], 708 ],
689 'dependencies': [ 709 'dependencies': [
690 'installer_util', 710 'installer_util',
691 '../base/base.gyp:base', 711 '../base/base.gyp:base',
692 ], 712 ],
693 }, 713 },
694 ], 714 ],
695 }], 715 }],
696 ], 716 ],
697 } 717 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698