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
|
# 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("//ui/webui/resources/tools/build_webui.gni")
build_webui("build") {
grd_prefix = "commerce_product_specifications"
static_files = [
"disclosure/product_specifications_disclosure.html",
"images/empty_state.svg",
"images/empty_state_dark.svg",
"product_specifications.html",
]
css_files = [
"app.css",
"buying_options_section.css",
"comparison_table_list.css",
"comparison_table_list_item.css",
"description_citation.css",
"description_section.css",
"disclosure/app.css",
"empty_section.css",
"header.css",
"header_menu.css",
"horizontal_carousel.css",
"loading_state.css",
"new_column_selector.css",
"product_selection_menu.css",
"product_selector.css",
"shared_vars.css",
"table.css",
]
mojo_files_deps =
[ "//components/commerce/core/mojom:mojo_bindings_ts__generator" ]
mojo_files = [
"$root_gen_dir/components/commerce/core/mojom/product_specifications.mojom-webui.ts",
"$root_gen_dir/components/commerce/core/mojom/shared.mojom-webui.ts",
"$root_gen_dir/components/commerce/core/mojom/shopping_service.mojom-webui.ts",
]
ts_files = [
"app.html.ts",
"app.ts",
"buying_options_section.html.ts",
"buying_options_section.ts",
"comparison_table_list.html.ts",
"comparison_table_list.ts",
"comparison_table_list_item.html.ts",
"comparison_table_list_item.ts",
"description_citation.html.ts",
"description_citation.ts",
"description_section.html.ts",
"description_section.ts",
"disclosure/app.html.ts",
"disclosure/app.ts",
"drag_and_drop_manager.ts",
"empty_section.html.ts",
"empty_section.ts",
"header.html.ts",
"header.ts",
"header_menu.html.ts",
"header_menu.ts",
"horizontal_carousel.html.ts",
"horizontal_carousel.ts",
"loading_state.html.ts",
"loading_state.ts",
"new_column_selector.html.ts",
"new_column_selector.ts",
"product_selection_menu.html.ts",
"product_selection_menu.ts",
"product_selector.html.ts",
"product_selector.ts",
"router.ts",
"table.html.ts",
"table.ts",
"utils.ts",
"window_proxy.ts",
]
icons_html_files = [ "images/icons.html" ]
ts_composite = true
ts_definitions = [
"//tools/typescript/definitions/chrome_send.d.ts",
"//tools/typescript/definitions/metrics_private.d.ts",
"//tools/typescript/definitions/pending.d.ts",
]
ts_path_mappings = [ "/images/icons.html.js|" + rebase_path(
"$target_gen_dir/preprocessed/images/icons.html.ts",
target_gen_dir) ]
ts_deps = [
"//third_party/lit/v3_0:build_ts",
"//ui/webui/resources/cr_components/color_change_listener:build_ts",
"//ui/webui/resources/cr_components/commerce:build_ts",
"//ui/webui/resources/cr_components/localized_link:build_ts",
"//ui/webui/resources/cr_elements:build_ts",
"//ui/webui/resources/js:build_ts",
"//ui/webui/resources/mojo:build_ts",
]
webui_context_type = "trusted"
}
|