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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
# Copyright 2024 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/chromeos/args.gni")
assert(is_win || is_mac || is_linux || is_chromeos)
# This is the public interface for the user education service.
source_set("user_education") {
sources = [
"browser_user_education_interface.h",
"polling_idle_observer.h",
"recent_session_observer_impl.h",
"recent_session_policy.h",
"show_promo_in_page.h",
"start_tutorial_in_page.h",
"user_education_types.h",
]
public_deps = [
"//base",
"//chrome/browser/user_education",
"//components/user_education/common",
"//ui/base/idle",
"//ui/base/unowned_user_data",
"//url",
]
}
source_set("impl") {
sources = [
"browser_user_education_interface.cc",
"recent_session_observer_impl.cc",
"recent_session_policy.cc",
"user_education_types.cc",
# The following files have circular dependencies against /c/b/ui:ui.
"polling_idle_observer.cc",
"show_promo_in_page.cc",
"start_tutorial_in_page.cc",
]
deps = [
":user_education",
"//chrome/browser/ui:browser_list",
"//chrome/browser/ui:browser_navigator_params_headers",
"//chrome/browser/ui/browser_window",
"//chrome/browser/ui/tabs:tabs_public",
"//components/user_education/webui",
"//ui/base/unowned_user_data",
]
public_deps = [ "//chrome/browser:browser_public_dependencies" ]
}
source_set("unit_tests") {
testonly = true
sources = [ "recent_session_policy_unittest.cc" ]
deps = [
":user_education",
"//base/test:test_support",
"//chrome/browser/user_education",
"//testing/gmock",
"//testing/gtest",
]
}
source_set("browser_tests") {
testonly = true
defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
sources = [
"show_promo_in_page_browsertest.cc",
"start_tutorial_in_page_browsertest.cc",
"user_education_configuration_provider_browsertest.cc",
]
deps = [
":user_education",
"//base/test:test_support",
"//chrome/browser:browser_process",
"//chrome/browser/ui:browser_element_identifiers",
"//chrome/browser/ui/tabs:tab_strip_model_observer",
"//chrome/common",
"//chrome/test:test_support",
"//chrome/test:test_support_ui",
"//components/feature_engagement/test:test_support",
"//components/prefs",
"//components/strings:components_strings",
"//components/webui/chrome_urls",
"//content/test:test_support",
"//testing/gtest",
]
# TODO(crbug.com/40031409): Fix code that adds exit-time destructors and
# enable the diagnostic by removing this line.
configs += [ "//build/config/compiler:no_exit_time_destructors" ]
}
if (!is_chromeos_device) {
source_set("interactive_ui_tests") {
testonly = true
defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
sources = [ "show_promo_in_page_interactive_uitest.cc" ]
deps = [
":user_education",
"//chrome/browser:browser_process",
"//chrome/browser/ui:browser_element_identifiers",
"//chrome/common",
"//chrome/test:test_support",
"//chrome/test:test_support_ui",
"//components/prefs",
"//components/strings:components_strings",
"//components/user_education/common",
"//components/webui/chrome_urls",
"//content/test:test_support",
"//testing/gtest",
"//ui/base",
"//url",
]
# TODO(crbug.com/40031409): Fix code that adds exit-time destructors and
# enable the diagnostic by removing this line.
configs += [ "//build/config/compiler:no_exit_time_destructors" ]
}
}
|