mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-03 05:01:27 +00:00
Revert "Extract demangler out to separate source set"
This reverts commit 2f7fea1f191802c6bf38e881220e0acfdbfd289a. Reason for revert: breaks autorollers Original change's description: > Extract demangler out to separate source set > > And add this as a dep to libtint_core_src and tint_ast_clone_fuzzer. > > Should fix chromium autoroller > > Change-Id: Ic5f43bae85e010839a1940c1ae2d570a9613d269 > Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/37708 > Commit-Queue: dan sinclair <dsinclair@chromium.org> > Reviewed-by: Ryan Harrison <rharrison@chromium.org> > Reviewed-by: dan sinclair <dsinclair@chromium.org> TBR=rharrison@chromium.org,dsinclair@chromium.org,bclayton@google.com Change-Id: If872d1655e13dd5d67f898a3d9a43c76b2866973 No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/37845 Reviewed-by: Ben Clayton <bclayton@google.com> Reviewed-by: dan sinclair <dsinclair@chromium.org> Commit-Queue: Ben Clayton <bclayton@google.com>
This commit is contained in:
parent
8121fe3367
commit
0f4638b9e4
24
BUILD.gn
24
BUILD.gn
@ -222,21 +222,6 @@ tint_language_header("cldebuginfo100") {
|
||||
# use the build flags to control what is included, instead of trying to specify
|
||||
# the subsets that they want.
|
||||
|
||||
source_set("tint_core_demangler") {
|
||||
sources = [
|
||||
"src/demangler.cc",
|
||||
"src/demangler.h",
|
||||
]
|
||||
|
||||
configs += [ ":tint_common_config" ]
|
||||
public_configs = [ ":tint_public_config" ]
|
||||
|
||||
if (build_with_chromium) {
|
||||
configs -= [ "//build/config/compiler:chromium_code" ]
|
||||
configs += [ "//build/config/compiler:no_chromium_code" ]
|
||||
}
|
||||
}
|
||||
|
||||
source_set("libtint_core_src") {
|
||||
sources = [
|
||||
"src/ast/access_control.cc",
|
||||
@ -412,6 +397,8 @@ source_set("libtint_core_src") {
|
||||
"src/ast/workgroup_decoration.h",
|
||||
"src/castable.cc",
|
||||
"src/castable.h",
|
||||
"src/demangler.cc",
|
||||
"src/demangler.h",
|
||||
"src/diagnostic/diagnostic.cc",
|
||||
"src/diagnostic/diagnostic.h",
|
||||
"src/diagnostic/formatter.cc",
|
||||
@ -475,8 +462,6 @@ source_set("libtint_core_src") {
|
||||
sources += [ "src/diagnostic/printer_other.cc" ]
|
||||
}
|
||||
|
||||
deps = [ ":tint_core_demangler" ]
|
||||
|
||||
public_deps = [
|
||||
":tint_core_enums_unified1",
|
||||
":tint_core_tables_unified1",
|
||||
@ -1440,10 +1425,7 @@ if (build_with_chromium) {
|
||||
if (tint_build_wgsl_reader && tint_build_wgsl_writer) {
|
||||
fuzzer_test("tint_ast_clone_fuzzer") {
|
||||
sources = [ "fuzzers/tint_ast_clone_fuzzer.cc" ]
|
||||
deps = [
|
||||
":tint_fuzzer_common",
|
||||
":tint_core_demangler",
|
||||
]
|
||||
deps = [ ":tint_fuzzer_common" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user