-
Notifications
You must be signed in to change notification settings - Fork 53
Fix build issue #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix build issue #78
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -64,6 +64,7 @@ grd_files_bundled_sources = [ | |
| "front_end/Images/breakpoint-circle.svg", | ||
| "front_end/Images/breakpoint-crossed-filled.svg", | ||
| "front_end/Images/breakpoint-crossed.svg", | ||
| "front_end/Images/browser-operator-logo.png", | ||
| "front_end/Images/brush-2.svg", | ||
| "front_end/Images/brush-filled.svg", | ||
| "front_end/Images/brush.svg", | ||
|
|
@@ -109,6 +110,7 @@ grd_files_bundled_sources = [ | |
| "front_end/Images/cssoverview_icons_2x.avif", | ||
| "front_end/Images/custom-typography.svg", | ||
| "front_end/Images/database.svg", | ||
| "front_end/Images/demo.gif", | ||
| "front_end/Images/deployed.svg", | ||
| "front_end/Images/device-fold.svg", | ||
| "front_end/Images/devices.svg", | ||
|
|
@@ -656,6 +658,26 @@ grd_files_bundled_sources = [ | |
| "front_end/panels/ai_chat/ui/SettingsDialog.js", | ||
| "front_end/panels/ai_chat/ui/OnboardingDialog.js", | ||
| "front_end/panels/ai_chat/ui/onboardingStyles.js", | ||
| "front_end/panels/ai_chat/ui/settings/types.js", | ||
| "front_end/panels/ai_chat/ui/settings/constants.js", | ||
| "front_end/panels/ai_chat/ui/settings/i18n-strings.js", | ||
| "front_end/panels/ai_chat/ui/settings/providerConfigs.js", | ||
| "front_end/panels/ai_chat/ui/settings/utils/validation.js", | ||
| "front_end/panels/ai_chat/ui/settings/utils/storage.js", | ||
| "front_end/panels/ai_chat/ui/settings/utils/styles.js", | ||
| "front_end/panels/ai_chat/ui/settings/components/ModelSelectorFactory.js", | ||
| "front_end/panels/ai_chat/ui/settings/components/SettingsHeader.js", | ||
| "front_end/panels/ai_chat/ui/settings/components/SettingsFooter.js", | ||
| "front_end/panels/ai_chat/ui/settings/components/AdvancedToggle.js", | ||
| "front_end/panels/ai_chat/ui/settings/providers/BaseProviderSettings.js", | ||
| "front_end/panels/ai_chat/ui/settings/providers/GenericProviderSettings.js", | ||
| "front_end/panels/ai_chat/ui/settings/providers/LiteLLMSettings.js", | ||
| "front_end/panels/ai_chat/ui/settings/providers/OpenRouterSettings.js", | ||
| "front_end/panels/ai_chat/ui/settings/advanced/MCPSettings.js", | ||
| "front_end/panels/ai_chat/ui/settings/advanced/BrowsingHistorySettings.js", | ||
| "front_end/panels/ai_chat/ui/settings/advanced/VectorDBSettings.js", | ||
| "front_end/panels/ai_chat/ui/settings/advanced/TracingSettings.js", | ||
| "front_end/panels/ai_chat/ui/settings/advanced/EvaluationSettings.js", | ||
| "front_end/panels/ai_chat/ui/mcp/MCPConnectionsDialog.js", | ||
| "front_end/panels/ai_chat/ui/mcp/MCPConnectorsCatalogDialog.js", | ||
| "front_end/panels/ai_chat/ui/EvaluationDialog.js", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
devtools_grd_files.gni now enumerates the ai_chat UI files only up to Useful? React with 👍 / 👎. |
||
|
|
@@ -684,6 +706,7 @@ grd_files_bundled_sources = [ | |
| "front_end/panels/ai_chat/core/Version.js", | ||
| "front_end/panels/ai_chat/core/VersionChecker.js", | ||
| "front_end/panels/ai_chat/core/LLMConfigurationManager.js", | ||
| "front_end/panels/ai_chat/core/CustomProviderManager.js", | ||
| "front_end/panels/ai_chat/LLM/LLMTypes.js", | ||
| "front_end/panels/ai_chat/LLM/LLMProvider.js", | ||
| "front_end/panels/ai_chat/LLM/LLMProviderRegistry.js", | ||
|
|
@@ -695,6 +718,10 @@ grd_files_bundled_sources = [ | |
| "front_end/panels/ai_chat/LLM/GroqProvider.js", | ||
| "front_end/panels/ai_chat/LLM/OpenRouterProvider.js", | ||
| "front_end/panels/ai_chat/LLM/BrowserOperatorProvider.js", | ||
| "front_end/panels/ai_chat/LLM/CerebrasProvider.js", | ||
| "front_end/panels/ai_chat/LLM/AnthropicProvider.js", | ||
| "front_end/panels/ai_chat/LLM/GoogleAIProvider.js", | ||
| "front_end/panels/ai_chat/LLM/GenericOpenAIProvider.js", | ||
| "front_end/panels/ai_chat/LLM/LLMClient.js", | ||
| "front_end/panels/ai_chat/LLM/MessageSanitizer.js", | ||
| "front_end/panels/ai_chat/tools/Tools.js", | ||
|
|
@@ -704,6 +731,7 @@ grd_files_bundled_sources = [ | |
| "front_end/panels/ai_chat/tools/FetcherTool.js", | ||
| "front_end/panels/ai_chat/tools/FinalizeWithCritiqueTool.js", | ||
| "front_end/panels/ai_chat/tools/HTMLToMarkdownTool.js", | ||
| "front_end/panels/ai_chat/tools/ReadabilityExtractorTool.js", | ||
| "front_end/panels/ai_chat/tools/SchemaBasedExtractorTool.js", | ||
| "front_end/panels/ai_chat/tools/StreamlinedSchemaExtractorTool.js", | ||
| "front_end/panels/ai_chat/tools/VisitHistoryManager.js", | ||
|
|
@@ -787,6 +815,7 @@ grd_files_bundled_sources = [ | |
| "front_end/panels/ai_chat/evaluation/test-cases/schema-extractor-tests.js", | ||
| "front_end/panels/ai_chat/evaluation/test-cases/streamlined-schema-extractor-tests.js", | ||
| "front_end/panels/ai_chat/evaluation/test-cases/web-task-agent-tests.js", | ||
| "front_end/panels/ai_chat/evaluation/test-cases/html-to-markdown-tests.js", | ||
| "front_end/panels/ai_chat/evaluation/utils/ErrorHandlingUtils.js", | ||
| "front_end/panels/ai_chat/evaluation/utils/EvaluationTypes.js", | ||
| "front_end/panels/ai_chat/evaluation/utils/PromptTemplates.js", | ||
|
|
@@ -796,6 +825,16 @@ grd_files_bundled_sources = [ | |
| "front_end/panels/ai_chat/mcp/MCPRegistry.js", | ||
| "front_end/panels/ai_chat/mcp/MCPToolAdapter.js", | ||
| "front_end/panels/ai_chat/mcp/MCPMetaTools.js", | ||
| "front_end/panels/ai_chat/memory/types.js", | ||
| "front_end/panels/ai_chat/memory/MemoryModule.js", | ||
| "front_end/panels/ai_chat/memory/MemoryBlockManager.js", | ||
| "front_end/panels/ai_chat/memory/MemoryAgentConfig.js", | ||
| "front_end/panels/ai_chat/memory/index.js", | ||
| "front_end/panels/ai_chat/memory/SearchMemoryTool.js", | ||
| "front_end/panels/ai_chat/memory/UpdateMemoryTool.js", | ||
| "front_end/panels/ai_chat/memory/ListMemoryBlocksTool.js", | ||
| "front_end/panels/ai_chat/utils/ContentChunker.js", | ||
| "front_end/panels/ai_chat/vendor/readability-source.js", | ||
| "front_end/panels/ai_chat/tools/LLMTracingWrapper.js", | ||
| "front_end/panels/animation/animation-meta.js", | ||
| "front_end/panels/animation/animation.js", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ai_chat GRD metadata still incomplete for some new TS sources
The newly added ai_chat JS entries here generally line up with the TS sources listed in
front_end/panels/ai_chat/BUILD.gnand_ai_chat_sources, which is good for the release GRD check. However, a few new TS files now present in_ai_chat_sourcesstill lack matching JS entries ingrd_files_bundled_sources, which will likely keep the release build/GRD check failing:Missing JS entries for TS files now in
_ai_chat_sources:ui/settings/advanced/MemorySettings.ts→front_end/panels/ai_chat/ui/settings/advanced/MemorySettings.js(not present near lines 676‑680).ui/ConversationHistoryList.ts→front_end/panels/ai_chat/ui/ConversationHistoryList.jsui/conversationHistoryStyles.ts→front_end/panels/ai_chat/ui/conversationHistoryStyles.jsui/CustomProviderDialog.ts→front_end/panels/ai_chat/ui/CustomProviderDialog.jsui/customProviderStyles.ts→front_end/panels/ai_chat/ui/customProviderStyles.jspersistence/ConversationTypes.ts→front_end/panels/ai_chat/persistence/ConversationTypes.jspersistence/ConversationStorageManager.ts→front_end/panels/ai_chat/persistence/ConversationStorageManager.jspersistence/ConversationManager.ts→front_end/panels/ai_chat/persistence/ConversationManager.jsTo keep the GRD lists consistent with
_ai_chat_js_outputs_for_metadata, add these entries in the ai_chat block. For example:This should align the GRD expectations with the JS outputs produced from the new TS files and fully fix the release build issue.
Also applies to: 709-709, 721-724, 734-734, 818-818, 828-837
🤖 Prompt for AI Agents