Skip to content

Commit 8504b3c

Browse files
ShabbyXAngle LUCI CQ
authored and
Angle LUCI CQ
committed
Add third_party/rust/ to Chromium rolls
Bug: angleproject:349994211 Change-Id: I79b587394b8fad9c5b1b53d2d72604f4ea5de4bd Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/6032333 Commit-Queue: Yuly Novikov <[email protected]> Auto-Submit: Shahbaz Youssefi <[email protected]> Reviewed-by: Yuly Novikov <[email protected]>
1 parent e961f7a commit 8504b3c

File tree

7 files changed

+14
-0
lines changed

7 files changed

+14
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
/third_party/r8/lib
9494
/third_party/rapidjson/src
9595
/third_party/requests/src
96+
/third_party/rust
9697
/third_party/rust-toolchain
9798
/third_party/six
9899
/third_party/spirv-cross/src

.gitmodules

+4
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,10 @@
180180
path = third_party/requests/src
181181
url = https://chromium.googlesource.com/external/github.com/kennethreitz/requests
182182
gclient-condition = checkout_android and not build_with_chromium
183+
[submodule "third_party/rust"]
184+
path = third_party/rust
185+
url = https://chromium.googlesource.com/chromium/src/third_party/rust
186+
gclient-condition = not build_with_chromium
183187
[submodule "third_party/six"]
184188
path = third_party/six
185189
url = https://chromium.googlesource.com/chromium/src/third_party/six

DEPS

+5
Original file line numberDiff line numberDiff line change
@@ -956,6 +956,11 @@ deps = {
956956
'condition': 'checkout_android and not build_with_chromium',
957957
},
958958

959+
'third_party/rust': {
960+
'url': Var('chromium_git') + '/chromium/src/third_party/rust@4baa094abc8bd42396bd0d39e3388cd56c37d002',
961+
'condition': 'not build_with_chromium',
962+
},
963+
959964
'third_party/siso/cipd': {
960965
'packages': [
961966
{

OWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ per-file third_party/protobuf=*
7878
per-file third_party/Python-Markdown=*
7979
per-file third_party/rapidjson/src=*
8080
per-file third_party/requests/src=*
81+
per-file third_party/rust=*
8182
per-file third_party/six=*
8283
per-file third_party/spirv-cross/src=*
8384
per-file third_party/spirv-headers/src=*

scripts/roll_aosp.sh

+1
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ delete_after_codegen_paths=(
181181
"third_party/jdk/current" # subdirs only to keep third_party/jdk/BUILD.gn (not pulled by gclient as it comes from ANGLE repo)
182182
"third_party/jdk/extras"
183183
"third_party/llvm-build"
184+
"third_party/rust"
184185
"third_party/rust-toolchain"
185186
"third_party/zlib" # Replaced by Android's zlib
186187

scripts/roll_chromium_deps.py

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ def FindSrcDirPath():
8282
'third_party/r8/cipd',
8383
'third_party/r8/d8/cipd',
8484
'third_party/requests/src',
85+
'third_party/rust',
8586
'third_party/siso/cipd',
8687
'third_party/six',
8788
'third_party/turbine/cipd',

third_party/rust

Submodule rust added at 4baa094

0 commit comments

Comments
 (0)