Skip to content

Commit

Permalink
[fuchsia] Allow flutter_app to be included in non-Fuchsia toolchains. (
Browse files Browse the repository at this point in the history
…flutter#4342)

A flutter_app target might be declared in a build file alongside some host tool.
The intent of the assertion seemed to be restricting the use of the template to the Fuchsia codebase.
  • Loading branch information
pylaligand authored Nov 9, 2017
1 parent e929336 commit d8dab8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/flutter_app.gni
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

assert(is_fuchsia)
assert(is_fuchsia || is_fuchsia_host)

import("//build/dart/dart_package.gni")
import("//build/dart/toolchain.gni")
Expand Down

0 comments on commit d8dab8a

Please sign in to comment.