Skip to content

Commit 81e470b

Browse files
authored
Merge branch 'ChromeDevTools:main' into main
2 parents 24e6dc7 + 8e5d542 commit 81e470b

File tree

4,623 files changed

+45333
-28576
lines changed

Some content is hidden

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

4,623 files changed

+45333
-28576
lines changed

.github/OWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
file://config/owner/INFRA_OWNERS
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: publish-on-tag
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: read
13+
id-token: write
14+
steps:
15+
- uses: actions/checkout@v5
16+
- name: Publish
17+
env:
18+
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
19+
TAG_NAME: ${{github.ref_name}}
20+
run: |
21+
rm .npmrc
22+
npm version --no-git-tag-version $TAG_NAME
23+
npm config set registry 'https://wombat-dressing-room.appspot.com/'
24+
npm config set '//wombat-dressing-room.appspot.com/:_authToken' '${NPM_TOKEN}'
25+
npm publish --provenance --access public

.github/workflows/tag.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Tag commits
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
schedule:
8+
# Run everyday at: https://crontab.guru/#0_6_*_*_*.
9+
- cron: '0 6 * * *'
10+
workflow_dispatch:
11+
12+
jobs:
13+
tag-commits:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v5
17+
- name: Get devtools version
18+
id: devtools_version
19+
shell: bash
20+
run: ./scripts/devtools_version.sh
21+
- name: Create tag
22+
uses: actions/github-script@v7
23+
# This can fail if the tag exists but this is expected.
24+
continue-on-error: true
25+
env:
26+
TAG: ${{ steps.devtools_version.outputs.tag }}
27+
with:
28+
github-token: ${{ secrets.BROWSER_AUTOMATION_BOT_TOKEN }}
29+
script: |
30+
await github.rest.git.createRef({
31+
owner: context.repo.owner,
32+
repo: context.repo.repo,
33+
ref: 'refs/tags/' + process.env.TAG,
34+
sha: context.sha
35+
});

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*.vcproj*
1212
*.vcxproj*
1313
*.xcodeproj*
14+
/GEMINI.md
1415
/.dev_profile
1516
/.test_cache
1617
/front_end/protocol_externs.js

.mailmap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 The Chromium Authors. All rights reserved.
1+
# Copyright 2021 The Chromium Authors
22
# Use of this source code is governed by a BSD-style license that can be
33
# found in the LICENSE file.
44

.npmignore

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
BUILD.gn
22
.gn
3+
.gni
34
build_overrides
45
DEPS
6+
*.test.ts
57

68
PRESUBMIT.py
79
OWNERS
@@ -10,8 +12,23 @@ ENG_REVIEW_OWNERS
1012
test
1113
htaccess
1214
v8/include
15+
# Exclude /third_party code, but we want to keep front_end/third_party in the package.
16+
/third_party
17+
codereview.settings
1318

1419
/out
15-
16-
# Exclude the root third_party, but not front_end/third_party, etc
17-
/third_party
20+
/build
21+
/.gemini
22+
/.eslintcache
23+
/.github
24+
/.vscode
25+
/config/gni
26+
/config/OWNERS
27+
/scripts
28+
/extensions
29+
/front_end/testing
30+
/front_end/Test.js
31+
/front_end/integration_test_runner.html
32+
/front_end/legacy_test_runner
33+
/front_end/panels/timeline/fixtures/traces
34+
/front_end/core/i18n/locales/*.json

BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2014 The Chromium Authors. All rights reserved.
1+
# Copyright 2014 The Chromium Authors
22
# Use of this source code is governed by a BSD-style license that can be
33
# found in the LICENSE file.
44

DEPS

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019 The Chromium Authors. All rights reserved.
1+
# Copyright 2019 The Chromium Authors
22
# Use of this source code is governed by a BSD-style license that can be
33
# found in the LICENSE file.
44

@@ -12,19 +12,19 @@ vars = {
1212
'build_with_chromium': False,
1313

1414
'build_url': 'https://chromium.googlesource.com/chromium/src/build.git',
15-
'build_revision': '800bdadb6c11e7152551824e98cfce9ffd85d386',
15+
'build_revision': '7133d7642a7f3a61dd3154f8685a6018c1f159a0',
1616

1717
'buildtools_url': 'https://chromium.googlesource.com/chromium/src/buildtools.git',
18-
'buildtools_revision': 'b0b6f725c28dbe2d5d7ca6edc9b81a352965eee9',
18+
'buildtools_revision': '958004daacdd90070d44b236a1581c81d71740ca',
1919

2020
'depot_tools_url': 'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
21-
'depot_tools_revision': '0699a53d841453368d0ad17deb1c7d29b6db09a6',
21+
'depot_tools_revision': '3accee0833540add4e5e608d222e01a768d9f94e',
2222

2323
'inspector_protocol_url': 'https://chromium.googlesource.com/deps/inspector_protocol',
2424
'inspector_protocol_revision': '07272ab9a30fd555890fda0718f4c2c25931653a',
2525

2626
# Keeping track of the last time we rolled the browser protocol files.
27-
'chromium_browser_protocol_revision' : '67b3be36a4efb989a69c585f68bee1d86f193768',
27+
'chromium_browser_protocol_revision' : 'a0857bc5fc46c520d7fe71beb1b0a0d7b0e60136',
2828

2929
'clang_format_url': 'https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git',
3030
'clang_format_revision': '37f6e68a107df43b7d7e044fd36a13cbae3413f2',
@@ -49,7 +49,7 @@ vars = {
4949
# Chrome version used for tests. It should be regularly updated to
5050
# match the Canary version listed here:
5151
# https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions.json
52-
'chrome': '141.0.7377.0',
52+
'chrome': '142.0.7409.0',
5353

5454
# 'magic' text to tell depot_tools that git submodules should be accepted but
5555
# but parity with DEPS file is expected.
@@ -59,7 +59,7 @@ vars = {
5959
'non_git_source': 'True',
6060

6161
# siso CIPD package version
62-
'siso_version': 'git_revision:15568691576f74b11a3c73c85a3c8dd5efb72f05',
62+
'siso_version': 'git_revision:02cbec18d7b18a0733fec402f2e90ff071b98f63',
6363
}
6464

6565
# Only these hosts are allowed for dependencies in this DEPS file.
@@ -222,10 +222,10 @@ deps = {
222222
"bucket": "chrome-devtools-ai-evals",
223223
"objects": [
224224
{
225-
"object_name": "f0e8e7b99dc61f7a943bfdf284552982c63bdf8d6217091f5260bc8ebd84ca9f",
226-
"sha256sum": "af579f30f2384089e1bece67db9afb71b902aa6ff99cb9749d4694ce53783670",
227-
"size_bytes": 3582,
228-
"generation": 1755705853621054
225+
"object_name": "8aaaea341cac9e6dad90a0685f4eeae39fabb9f655761eed9c3af16795a40f14",
226+
"sha256sum": "c2e5b18a77095451dbaae27cea913aace1fc267e8e9e0f0b4f297a6215eb5299",
227+
"size_bytes": 6801,
228+
"generation": 1756718606230139
229229
}
230230
]
231231
},

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2014 The Chromium Authors. All rights reserved.
1+
// Copyright 2014 The Chromium Authors
22
//
33
// Redistribution and use in source and binary forms, with or without
44
// modification, are permitted provided that the following conditions are

OWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ per-file package-lock.json=file://config/owner/INFRA_OWNERS
1313
per-file package.json=file://config/owner/INFRA_OWNERS
1414
per-file tsconfig.json=file://config/owner/INFRA_OWNERS
1515
per-file eslint.config.mjs=file://config/owner/COMMON_OWNERS
16-
per-file .github=file://config/owner/INFRA_OWNERS
1716

1817
# git submodules
1918
per-file build=devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com

0 commit comments

Comments
 (0)