1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
# Copyright 2025 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//mojo/public/tools/bindings/mojom.gni")
assert(!is_android)
source_set("new_tab_footer") {
sources = [
"footer_context_menu.h",
"new_tab_footer_handler.h",
"new_tab_footer_helper.h",
"new_tab_footer_ui.h",
]
public_deps = [
":mojo_bindings",
"//chrome/browser/search/background",
"//chrome/browser/ui/webui/customize_buttons:mojo_bindings",
"//chrome/browser/ui/webui/top_chrome",
"//components/policy/core/browser",
"//components/prefs",
"//extensions/browser:browser",
"//ui/menus:menus",
"//ui/webui",
]
}
source_set("impl") {
sources = [
"footer_context_menu.cc",
"new_tab_footer_handler.cc",
"new_tab_footer_helper.cc",
"new_tab_footer_ui.cc",
]
public_deps = [ "//chrome/browser:browser_public_dependencies" ]
deps = [
":new_tab_footer",
"//chrome/browser:browser_process",
"//chrome/browser/extensions",
"//chrome/browser/profiles",
"//chrome/browser/resources/new_tab_footer:resources_grit",
"//chrome/browser/resources/new_tab_shared:resources_grit",
"//chrome/browser/search",
"//chrome/browser/ui/browser_window",
"//chrome/browser/ui/views/side_panel:side_panel",
"//chrome/browser/ui/webui:webui_util",
"//chrome/browser/ui/webui/customize_buttons:customize_buttons",
"//chrome/common",
"//components/search:search",
"//content/public/browser",
"//ui/base",
]
}
source_set("test_support") {
testonly = true
sources = [
"mock_new_tab_footer_document.cc",
"mock_new_tab_footer_document.h",
]
public_deps = [
":new_tab_footer",
"//base/test:test_support",
"//chrome/browser/ui:ui_features",
"//chrome/test:test_support",
]
}
source_set("browser_tests") {
testonly = true
defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
sources = [
"footer_context_menu_browsertest.cc",
"new_tab_footer_handler_browsertest.cc",
]
deps = [
":test_support",
"//chrome/browser/ui/webui:webui_util",
]
}
source_set("unit_tests") {
testonly = true
sources = [ "new_tab_footer_handler_unittest.cc" ]
deps = [ ":test_support" ]
}
mojom("mojo_bindings") {
sources = [ "new_tab_footer.mojom" ]
webui_module_path = "/"
public_deps = [
"//ui/gfx/geometry/mojom",
"//url/mojom:url_mojom_gurl",
]
}
|