forked from google/skia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bazel] Move remaining deps out of //third_party/BUILD.bazel
Change-Id: Ib6083b99670eff7b8455cee2b21814db7a790d2a Bug: skia:12541 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/559537 Reviewed-by: Ben Wagner <[email protected]>
- Loading branch information
Showing
8 changed files
with
64 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# This file will be copied into //third_party/externals/spirv-cross via the new_local_repository | ||
# rule in WORKSPACE.bazel, so all files should be relative to that path. | ||
|
||
cc_library( | ||
name = "spirv_cross", | ||
srcs = [ | ||
"GLSL.std.450.h", | ||
"spirv.hpp", | ||
"spirv_cfg.cpp", | ||
"spirv_cfg.hpp", | ||
"spirv_common.hpp", | ||
"spirv_cpp.cpp", | ||
"spirv_cpp.hpp", | ||
"spirv_cross.cpp", | ||
"spirv_cross.hpp", | ||
"spirv_cross_containers.hpp", | ||
"spirv_cross_error_handling.hpp", | ||
"spirv_cross_parsed_ir.cpp", | ||
"spirv_cross_parsed_ir.hpp", | ||
"spirv_glsl.cpp", | ||
"spirv_glsl.hpp", | ||
"spirv_hlsl.cpp", | ||
"spirv_msl.cpp", | ||
"spirv_msl.hpp", | ||
"spirv_parser.cpp", | ||
"spirv_parser.hpp", | ||
"spirv_reflect.cpp", | ||
"spirv_reflect.hpp", | ||
], | ||
hdrs = [ | ||
"spirv_hlsl.hpp", | ||
], | ||
defines = ["SPIRV_CROSS_EXCEPTIONS_TO_ASSERTIONS"], | ||
includes = [ | ||
# This allows #include <spirv_hlsl.hpp> to work | ||
".", | ||
], | ||
visibility = ["//visibility:public"], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
cc_library( | ||
name = "etc1", | ||
testonly = True, # Only used for a few gms | ||
srcs = [ | ||
"etc1.cpp", | ||
], | ||
hdrs = [ | ||
"etc1.h", | ||
], | ||
visibility = ["//gm:__pkg__"], | ||
) |