Remove _exe suffix from sample program
BUG=tint:196 Change-Id: I4fb8fb8f00173743792914eff4427c5725bc9266 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/26122 Reviewed-by: dan sinclair <dsinclair@chromium.org>
This commit is contained in:
parent
40f16dde22
commit
26479f19c7
6
BUILD.gn
6
BUILD.gn
|
@ -1174,14 +1174,14 @@ if (build_with_chromium) {
|
|||
# Samples - Executables exposing command line functionality
|
||||
###############################################################################
|
||||
|
||||
config("tint_exe_config") {
|
||||
config("tint_config") {
|
||||
include_dirs = []
|
||||
if (tint_build_spv_reader || tint_build_spv_writer) {
|
||||
include_dirs += [ "${tint_spirv_tools_dir}/include/" ]
|
||||
}
|
||||
}
|
||||
|
||||
executable("tint_exe") {
|
||||
executable("tint") {
|
||||
sources = [ "samples/main.cc" ]
|
||||
deps = [
|
||||
":libtint",
|
||||
|
@ -1192,7 +1192,7 @@ executable("tint_exe") {
|
|||
|
||||
configs += [
|
||||
":tint_common_config",
|
||||
":tint_exe_config",
|
||||
":tint_config",
|
||||
]
|
||||
public_configs = [ ":tint_public_config" ]
|
||||
|
||||
|
|
Loading…
Reference in New Issue