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

Side by Side Diff: chrome/common/BUILD.gn

Issue 2086223002: Convert instant search messages to Mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge Created 3 years, 11 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/browser/ui/search/search_tab_helper_unittest.cc ('k') | chrome/common/instant.mojom » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/util/process_version.gni") 6 import("//build/util/process_version.gni")
7 import("//chrome/common/features.gni") 7 import("//chrome/common/features.gni")
8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path.
9 import("//extensions/features/features.gni") 9 import("//extensions/features/features.gni")
10 import("//mojo/public/tools/bindings/mojom.gni") 10 import("//mojo/public/tools/bindings/mojom.gni")
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 "content_restriction.h", 85 "content_restriction.h",
86 "content_settings_pattern_serializer.cc", 86 "content_settings_pattern_serializer.cc",
87 "content_settings_pattern_serializer.h", 87 "content_settings_pattern_serializer.h",
88 "crash_keys.cc", 88 "crash_keys.cc",
89 "crash_keys.h", 89 "crash_keys.h",
90 "custom_handlers/protocol_handler.cc", 90 "custom_handlers/protocol_handler.cc",
91 "custom_handlers/protocol_handler.h", 91 "custom_handlers/protocol_handler.h",
92 "descriptors_android.h", 92 "descriptors_android.h",
93 "ini_parser.cc", 93 "ini_parser.cc",
94 "ini_parser.h", 94 "ini_parser.h",
95 "instant_type_traits.h",
95 "logging_chrome.cc", 96 "logging_chrome.cc",
96 "logging_chrome.h", 97 "logging_chrome.h",
97 "mac/app_shim_launch.h", 98 "mac/app_shim_launch.h",
98 "mac/app_shim_messages.h", 99 "mac/app_shim_messages.h",
99 "mac/cfbundle_blocker.h", 100 "mac/cfbundle_blocker.h",
100 "mac/cfbundle_blocker.mm", 101 "mac/cfbundle_blocker.mm",
101 "mac/launchd.h", 102 "mac/launchd.h",
102 "mac/launchd.mm", 103 "mac/launchd.mm",
103 "media/media_resource_provider.cc", 104 "media/media_resource_provider.cc",
104 "media/media_resource_provider.h", 105 "media/media_resource_provider.h",
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 "//base", 617 "//base",
617 "//chrome/installer/util:with_no_strings", 618 "//chrome/installer/util:with_no_strings",
618 ] 619 ]
619 } 620 }
620 } 621 }
621 622
622 # Use a static library here because many test binaries depend on this but don't 623 # Use a static library here because many test binaries depend on this but don't
623 # require many files from it. This makes linking more efficient. 624 # require many files from it. This makes linking more efficient.
624 static_library("test_support") { 625 static_library("test_support") {
625 testonly = true 626 testonly = true
626 visibility = [ "//chrome/test:test_support" ] 627 visibility = [ "//chrome/test:*" ]
627 628
628 sources = [] 629 sources = [
630 "search/mock_searchbox.cc",
631 "search/mock_searchbox.h",
632 ]
629 633
630 deps = [ 634 deps = [
631 ":common", 635 ":common",
636 ":instant_mojom",
632 "//base", 637 "//base",
638 "//testing/gmock",
633 "//testing/gtest", 639 "//testing/gtest",
634 ] 640 ]
635 641
636 if (is_win || is_mac) { 642 if (is_win || is_mac) {
637 sources += [ 643 sources += [
638 "media_galleries/picasa_test_util.cc", 644 "media_galleries/picasa_test_util.cc",
639 "media_galleries/picasa_test_util.h", 645 "media_galleries/picasa_test_util.h",
640 "media_galleries/pmp_test_util.cc", 646 "media_galleries/pmp_test_util.cc",
641 "media_galleries/pmp_test_util.h", 647 "media_galleries/pmp_test_util.h",
642 ] 648 ]
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 "renderer_configuration.mojom", 684 "renderer_configuration.mojom",
679 "resource_usage_reporter.mojom", 685 "resource_usage_reporter.mojom",
680 "shell_handler_win.mojom", 686 "shell_handler_win.mojom",
681 ] 687 ]
682 688
683 public_deps = [ 689 public_deps = [
684 "//components/content_settings/core/common:mojo_bindings", 690 "//components/content_settings/core/common:mojo_bindings",
685 "//url/mojo:url_mojom_gurl", 691 "//url/mojo:url_mojom_gurl",
686 ] 692 ]
687 } 693 }
694
695 mojom("instant_mojom") {
696 sources = [
697 "instant.mojom",
698 ]
699
700 public_deps = [
701 "//mojo/common:common_custom_types",
702 "//url/mojo:url_mojom_gurl",
703 ]
704 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/search/search_tab_helper_unittest.cc ('k') | chrome/common/instant.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698