Skip to content

Commit

Permalink
Revert "Build Windows shell (flutter#8331)"
Browse files Browse the repository at this point in the history
This reverts commit 37534b7.
  • Loading branch information
RBogie committed Apr 8, 2019
1 parent 77711e8 commit 25a435f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 39 deletions.
9 changes: 3 additions & 6 deletions shell/platform/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,9 @@ group("platform") {
]
} else if (is_linux) {
deps = []
} else if (is_win) {
deps = [
"windows",
]
} else if ( is_fuchsia) {
# Fuchsia has its own runner implementation.
} else if (is_win || is_fuchsia) {
# There is no platform target on Windows. Fuchsia has its own runner
# implementation.
deps = []
} else {
assert(false, "Unknown/Unsupported platform.")
Expand Down
12 changes: 1 addition & 11 deletions shell/platform/common/cpp/client_wrapper/publish.gni
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@ template("publish_client_wrapper") {
}

copy("${template_target_name}_publish_includes") {
visibility = [
":$template_target_name",
":${template_target_name}_publish_sources",
]
visibility = [ ":$template_target_name" ]

sources = invoker.public
outputs = [
Expand All @@ -41,12 +38,5 @@ template("publish_client_wrapper") {
outputs = [
"$publish_dir_root/{{source_file_part}}",
]

# GN on Windows appears to do #include checks even for copy
# targets, so add the dependency to the headers to satisfy
# the check.
deps = [
":${template_target_name}_publish_includes",
]
}
}
22 changes: 0 additions & 22 deletions shell/platform/windows/BUILD.gn

This file was deleted.

0 comments on commit 25a435f

Please sign in to comment.