Skip to content

Commit 9397a1e

Browse files
committed
Update to latest HEAD
HASH 92885dc4cef1cbc164fa60e8c87b8d4af43ee99e
1 parent 1f56d35 commit 9397a1e

File tree

26,563 files changed

+4351214
-111814
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

26,563 files changed

+4351214
-111814
lines changed

.git-blame-ignore-revs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,3 +349,11 @@ aaf6c64ae8d791f878599bf2cea8a9b1e6a5001c
349349

350350
# Always add braces to single-line if-statements (https://crrev.com/c/1821526)
351351
1d6e57a0e314d709029cac52b98898b828f45a12
352+
353+
# [AI Assistance] Renames and refactorings (https://crrev.com/c/6080811)
354+
786bd4290956c5b8560a03cf73d860572559e382
355+
356+
# RPP mass-renames. https://crrev.com/c/5867685 https://crrev.com/c/6191870 https://crrev.com/c/6190947
357+
8da83d7f627b0588b1c49d7761a90368efbfed73
358+
b1b834b0a1f9e61213fba85d8bc4a3c9ccfdefd7
359+
a59de5d27b5977b0bb8d260634f1d8d45e69cfdf

.gitallowed

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# This key is expected to be visible in the frontend code
22
# b/349721878
33
CRUX_API_KEY
4+
# Publicly-visible API key for Firebase analytics, used in NetworkRequestHandler.test.ts
5+
AIzaSyCGxLbbFQxH4BV1fY0RODlxTos9nJa2l_g
46

.gitattributes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
package-lock.json binary
2+
front_end/ui/visual_logging/KnownContextValues.ts merge=union
23
# Automatically normalize line endings (to LF) for all text-based files.
3-
* text=auto eol=lf
4+
* text=auto eol=lf

.gitignore

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ config.gypi
2424
/interactions-coverage
2525
/perf-data
2626
npm-debug.log
27-
/scripts/javascript_natives/node_modules
2827
/scripts/protocol_typescript/*.js
28+
/scripts/ai_assistance/data
29+
/scripts/ai_assistance/performance-trace-downloads
2930

3031
/build
3132
/buildtools
@@ -46,4 +47,8 @@ test/perf/.generated
4647
/.vscode/settings.json
4748
/.vscode/tasks.json
4849
/.vscode/launch.json
49-
node_modules/
50+
51+
# Linters caches
52+
.eslintcache
53+
.stylelintcache
54+
**/tsconfig.tsbuildinfo

.stylelintrc.json

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"extends": "stylelint-config-standard",
3-
"plugins": [
4-
"./scripts/stylelint_rules/lib/use_theme_colors.js"
5-
],
3+
"plugins": ["./scripts/stylelint_rules/lib/use_theme_colors.mjs"],
64
"rules": {
75
"plugin/use_theme_colors": true,
86
"alpha-value-notation": "percentage",
@@ -11,21 +9,20 @@
119
"comment-empty-line-before": null,
1210
"declaration-no-important": true,
1311
"color-named": "never",
14-
"max-empty-lines": 1,
1512
"selector-type-no-unknown": [
1613
true,
1714
{
18-
"ignoreTypes": [
19-
"/^devtools-/"
20-
]
15+
"ignoreTypes": ["/^devtools-/", "/^dt-/", "x-link"]
2116
}
2217
],
23-
"max-line-length": null,
2418
"selector-class-pattern": null,
2519
"keyframes-name-pattern": null,
2620
"selector-no-vendor-prefix": null,
2721
"property-no-vendor-prefix": null,
2822
"value-no-vendor-prefix": null,
29-
"media-feature-name-no-vendor-prefix": null
30-
}
23+
"media-feature-name-no-vendor-prefix": null,
24+
"no-descending-specificity": null
25+
},
26+
"reportNeedlessDisables": true,
27+
"reportUnscopedDisables": true
3128
}

.vscode/devtools-workspace-launch.json

Lines changed: 13 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -2,60 +2,42 @@
22
"version": "0.2.0",
33
"configurations": [
44
{
5-
"type": "pwa-chrome",
5+
"type": "chrome",
66
"request": "launch",
77
"name": "Run unit tests in VS Code debugger",
88
"preLaunchTask": "1-build_Debug",
9-
"runtimeExecutable": "/usr/bin/npm",
10-
"runtimeArgs": [
11-
"run",
12-
"test",
13-
"front_end"
14-
],
9+
"runtimeExecutable": "npm",
10+
"runtimeArgs": ["run", "test", "front_end"],
1511
"port": 7722,
1612
"timeout": 30000,
1713
"browserLaunchLocation": "workspace",
1814
"outputCapture": "std",
1915
"trace": true
2016
},
2117
{
22-
"type": "pwa-node",
18+
"type": "node",
2319
"request": "launch",
2420
"name": "Run end-to-end tests in VS Code debugger",
2521
"preLaunchTask": "1-build_Debug",
26-
"runtimeExecutable": "/usr/bin/npm",
27-
"runtimeArgs": [
28-
"run",
29-
"test",
30-
"test/e2e"
31-
]
22+
"runtimeExecutable": "npm",
23+
"runtimeArgs": ["run", "test", "test/e2e"]
3224
},
3325
{
34-
"type": "pwa-node",
26+
"type": "node",
3527
"request": "launch",
3628
"name": "Run test",
3729
"cwd": "${workspaceFolder}",
38-
"runtimeExecutable": "/usr/bin/npm",
39-
"runtimeArgs": [
40-
"run",
41-
"test",
42-
"--",
43-
"${file}"
44-
]
30+
"runtimeExecutable": "npm",
31+
"runtimeArgs": ["run", "test", "--", "${file}"]
4532
},
4633
{
47-
"type": "pwa-node",
34+
"type": "node",
4835
"request": "launch",
4936
"name": "Debug test",
5037
"cwd": "${workspaceFolder}",
51-
"runtimeExecutable": "/usr/bin/npm",
52-
"runtimeArgs": [
53-
"run",
54-
"test",
55-
"--",
56-
"--debug",
57-
"${file}"
58-
]
38+
"runtimeExecutable": "npm",
39+
"console": "integratedTerminal",
40+
"runtimeArgs": ["run", "test", "--", "--debug", "${file}"]
5941
}
6042
]
6143
}
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
2-
"eslint.runtime": "third_party/node/node.py",
2+
"eslint.runtime": "$PATHED by scripts/deps/sync-vscode-settings.mjs",
3+
"eslint.execArgv": [
4+
"--experimental-strip-types",
5+
"--no-warnings=ExperimentalWarning"
6+
],
37
"typescript.tsdk": "node_modules/typescript/lib",
48
"debug.javascript.terminalOptions": {
5-
"skipFiles": [
6-
"node_modules/typescript/**"
7-
]
9+
"skipFiles": ["node_modules/typescript/**"]
810
}
911
}

.vscode/devtools-workspace-tasks.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,21 @@
66
"label": "1-build_Debug",
77
"type": "shell",
88
"command": "npm run build",
9-
"group": {"kind": "build", "isDefault": true},
9+
"group": { "kind": "build", "isDefault": true },
1010
"presentation": {
1111
"echo": true,
1212
"reveal": "always"
1313
},
1414
"problemMatcher": [
1515
{
1616
"owner": "typescript",
17-
"fileLocation": ["relative", "${workspaceRoot}/out/Default"],
17+
"fileLocation": ["relative", "${workspaceRoot}"],
1818
"pattern": {
19-
"regexp": "^([^\\s].*)\\((\\d+,\\d+)\\):\\s*(.*)$",
19+
"regexp": "^([^\\s].*)\\((\\d+,\\d+)\\): error (TS\\d+):\\s*(.*)$",
2020
"file": 1,
2121
"location": 2,
22-
"message": 3
22+
"code": 3,
23+
"message": 4
2324
}
2425
}
2526
]

.vscode/extensions.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
{
2-
"recommendations": [
3-
"dbaeumer.vscode-eslint",
4-
"bierner.lit-html",
5-
"npclaudiu.vscode-gn"
6-
]
7-
}
2+
"recommendations": ["dbaeumer.vscode-eslint", "runem.lit-plugin", "Google.gn"]
3+
}

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# BEGIN individuals section.
1414
AbdAlRahman Gad <[email protected]>
1515
Ajay Panthagani <[email protected]>
16+
Alesandro Ortiz <[email protected]>
1617
Alexander Stammbach <[email protected]>
1718
Alexey Rodionov <[email protected]>
1819
Ankit Mishra <[email protected]>
@@ -72,13 +73,15 @@ Rajasekar Murugan <[email protected]>
7273
Ross Wollman <[email protected]>
7374
Royi Hagigi <[email protected]>
7475
Ryan Puhalovich <[email protected]>
76+
Ryuhei Shima <[email protected]>
7577
Satvic Dhawan <[email protected]>
7678
Sebastian Markbåge <[email protected]>
7779
Serg Kryvonos <[email protected]>
7880
Sergio Avalos <[email protected]>
7981
Simon Siefke <[email protected]>
8082
Stephen Tsoi-A-Sue <[email protected]>
8183
Sunnylost <[email protected]>
84+
TaegeonKim <[email protected]>
8285
Thomas Stokes <[email protected]>
8386
Tony Kostowny <[email protected]>
8487
Toshiaki Tanaka <[email protected]>
@@ -108,3 +111,4 @@ The Chromium Authors <*@chromium.org>
108111
The Qt Company <*@qt.io>
109112
# Please DO NOT APPEND here. See comments at the top of the file.
110113
# END organizations section.
114+

0 commit comments

Comments
 (0)