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
|
# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//ui/webui/resources/tools/build_webui.gni")
import("//ui/webui/webui_features.gni")
assert(!is_android)
build_webui("build") {
grd_prefix = "side_panel_customize_chrome"
static_files = [ "customize_chrome.html" ]
extra_grdp_deps = [ "icons:build_grdp" ]
extra_grdp_files = [ "$target_gen_dir/icons/resources.grdp" ]
ts_files = [
"app.html.ts",
"app.ts",
"appearance.html.ts",
"appearance.ts",
"button_label.html.ts",
"button_label.ts",
"cards.html.ts",
"cards.ts",
"categories.html.ts",
"categories.ts",
"check_mark_wrapper.html.ts",
"check_mark_wrapper.ts",
"common.ts",
"customize_chrome_api_proxy.ts",
"customize_toolbar/customize_toolbar_api_proxy.ts",
"customize_toolbar/toolbar.html.ts",
"customize_toolbar/toolbar.ts",
"footer.html.ts",
"footer.ts",
"hover_button.html.ts",
"hover_button.ts",
"shortcuts.html.ts",
"shortcuts.ts",
"theme_snapshot.html.ts",
"theme_snapshot.ts",
"themes.html.ts",
"themes.ts",
"wallpaper_search/combobox/customize_chrome_combobox.html.ts",
"wallpaper_search/combobox/customize_chrome_combobox.ts",
"wallpaper_search/wallpaper_search.html.ts",
"wallpaper_search/wallpaper_search.ts",
"wallpaper_search/wallpaper_search_proxy.ts",
"wallpaper_search/wallpaper_search_tile.html.ts",
"wallpaper_search/wallpaper_search_tile.ts",
"window_proxy.ts",
]
css_files = [
"app.css",
"appearance.css",
"button_label.css",
"cards.css",
"categories.css",
"check_mark_wrapper.css",
"customize_toolbar/toolbar.css",
"footer.css",
"hover_button.css",
"shortcuts.css",
"theme_snapshot.css",
"themes.css",
"toggle_container_shared.css",
"wallpaper_search/combobox/customize_chrome_combobox.css",
"wallpaper_search/wallpaper_search.css",
"wallpaper_search/wallpaper_search_tile.css",
]
mojo_files_deps = [ "//chrome/browser/ui/webui/side_panel/customize_chrome:mojo_bindings_ts__generator" ]
mojo_files = [
"$root_gen_dir/chrome/browser/ui/webui/side_panel/customize_chrome/customize_chrome.mojom-webui.ts",
"$root_gen_dir/chrome/browser/ui/webui/side_panel/customize_chrome/customize_toolbar/customize_toolbar.mojom-webui.ts",
"$root_gen_dir/chrome/browser/ui/webui/side_panel/customize_chrome/wallpaper_search/wallpaper_search.mojom-webui.ts",
]
ts_composite = true
ts_deps = [
"../shared:build_ts",
"//third_party/lit/v3_0:build_ts",
"//ui/webui/resources/cr_components/color_change_listener:build_ts",
"//ui/webui/resources/cr_components/customize_color_scheme_mode:build_ts",
"//ui/webui/resources/cr_components/help_bubble:build_ts",
"//ui/webui/resources/cr_components/managed_dialog:build_ts",
"//ui/webui/resources/cr_components/theme_color_picker:build_ts",
"//ui/webui/resources/cr_elements:build_ts",
"//ui/webui/resources/js:build_ts",
"//ui/webui/resources/mojo:build_ts",
]
ts_definitions = [
"//tools/typescript/definitions/chrome_send.d.ts",
"//tools/typescript/definitions/metrics_private.d.ts",
]
ts_path_mappings =
[ "chrome://customize-chrome-side-panel.top-chrome/shared/*|" +
rebase_path(
"$root_gen_dir/chrome/browser/resources/side_panel/shared/tsc/*",
target_gen_dir) ]
webui_context_type = "trusted"
generate_code_cache = enable_webui_generate_code_cache
}
|