Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit ab4d6db

Browse files
Move vulkan-deps to //flutter/third_party/vulkan-deps (#51013)
See flutter/flutter#144205
1 parent c79117b commit ab4d6db

File tree

22 files changed

+7595
-7564
lines changed

22 files changed

+7595
-7564
lines changed

DEPS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ allowed_hosts = [
279279
]
280280

281281
deps = {
282-
'src': 'https://github.com/flutter/buildroot.git' + '@' + '21b1b9f2645fada701885108e86aefbcb3b1cca0',
282+
'src': 'https://github.com/flutter/buildroot.git' + '@' + '2f684abc6e6bfba9062bd372929a8d458e03940a',
283283

284284
'src/flutter/third_party/depot_tools':
285285
Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '580b4ff3f5cd0dcaa2eacda28cefe0f45320e8f7',
@@ -302,7 +302,7 @@ deps = {
302302
'src/flutter/third_party/shaderc':
303303
Var('chromium_git') + '/external/github.com/google/shaderc' + '@' + '37e25539ce199ecaf19fb7f7d27818716d36686d',
304304

305-
'src/third_party/vulkan-deps':
305+
'src/flutter/third_party/vulkan-deps':
306306
Var('chromium_git') + '/vulkan-deps' + '@' + '014f44e134a1de387791bffacc32ff9d8db71176',
307307

308308
'src/flutter/third_party/flatbuffers':
@@ -1063,7 +1063,7 @@ deps = {
10631063
}
10641064

10651065
recursedeps = [
1066-
'src/third_party/vulkan-deps',
1066+
'src/flutter/third_party/vulkan-deps',
10671067
]
10681068

10691069
hooks = [

build/secondary/third_party/shaderc_flutter/BUILD.gn

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ source_set("shaderc_util_flutter") {
1212
public_configs = [ ":shaderc_util_config" ]
1313

1414
configs +=
15-
[ "//third_party/vulkan-deps/spirv-tools/src:spvtools_public_config" ]
15+
[ "//flutter/third_party/vulkan-deps/spirv-tools/src:spvtools_public_config" ]
1616

1717
public_deps = [
18-
"//third_party/vulkan-deps/glslang/src:glslang_sources",
19-
"//third_party/vulkan-deps/spirv-tools/src:spvtools",
18+
"//flutter/third_party/vulkan-deps/glslang/src:glslang_sources",
19+
"//flutter/third_party/vulkan-deps/spirv-tools/src:spvtools",
2020
]
2121

2222
defines = [ "ENABLE_HLSL=1" ]
@@ -62,13 +62,13 @@ source_set("shaderc_flutter") {
6262
public_configs = [ ":shaderc_config" ]
6363

6464
configs +=
65-
[ "//third_party/vulkan-deps/spirv-tools/src:spvtools_public_config" ]
65+
[ "//flutter/third_party/vulkan-deps/spirv-tools/src:spvtools_public_config" ]
6666

6767
deps = [ ":shaderc_util_flutter" ]
6868

6969
public_deps = [
70-
"//third_party/vulkan-deps/glslang/src:glslang_sources",
71-
"//third_party/vulkan-deps/spirv-tools/src:spvtools",
70+
"//flutter/third_party/vulkan-deps/glslang/src:glslang_sources",
71+
"//flutter/third_party/vulkan-deps/spirv-tools/src:spvtools",
7272
]
7373

7474
sources = [

build/secondary/third_party/spirv_cross_flutter/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Use of this source code is governed by a BSD-style license that can be
33
# found in the LICENSE file.
44

5-
source_root = "//third_party/vulkan-deps/spirv-cross/src"
5+
source_root = "//flutter/third_party/vulkan-deps/spirv-cross/src"
66

77
config("spirv_cross_public") {
88
include_dirs = [ source_root ]

build/secondary/third_party/vulkan_memory_allocator/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Custom GN integration for VulkanMemoryAllocator.
66

77
declare_args() {
8-
vma_vulkan_headers_dir = "//third_party/vulkan-deps/vulkan-headers/src"
8+
vma_vulkan_headers_dir = "//flutter/third_party/vulkan-deps/vulkan-headers/src"
99
}
1010

1111
config("vulkan_memory_allocator_config") {

build/secondary/third_party/vulkan_validation_layers/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import("//build_overrides/vulkan_validation_layers.gni")
66

7-
_checkout_dir = "//third_party/vulkan-deps/vulkan-validation-layers/src"
7+
_checkout_dir = "//flutter/third_party/vulkan-deps/vulkan-validation-layers/src"
88

99
vulkan_undefine_configs = []
1010
if (is_win) {

ci/licenses.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ function verify_licenses() (
162162

163163
local actualLicenseCount
164164
actualLicenseCount="$(tail -n 1 flutter/ci/licenses_golden/licenses_flutter | tr -dc '0-9')"
165-
local expectedLicenseCount=758 # When changing this number: Update the error message below as well describing the newly expected license types.
165+
local expectedLicenseCount=842 # When changing this number: Update the error message below as well describing the newly expected license types.
166166

167167
if [[ $actualLicenseCount -ne $expectedLicenseCount ]]; then
168168
echo "=============================== ERROR ==============================="

ci/licenses_golden/excluded_files

Lines changed: 192 additions & 192 deletions
Large diffs are not rendered by default.

ci/licenses_golden/licenses_flutter

Lines changed: 7200 additions & 82 deletions
Large diffs are not rendered by default.

ci/licenses_golden/licenses_third_party

Lines changed: 148 additions & 7236 deletions
Large diffs are not rendered by default.

ci/licenses_golden/tool_signature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Signature: 0efc328e1ec5308cf91a9069c33c0463
1+
Signature: 04fdc5b7c8d5b1690149c9aa20f4174d
22

0 commit comments

Comments
 (0)