Skip to content

Commit

Permalink
Include arm sources when building for linux arm (flutter#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekamit authored and chinmaygarde committed Sep 5, 2017
1 parent 8280a05 commit 06d611c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion third_party/libpng/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ source_set("libpng") {
]

if ((is_ios && !use_ios_simulator) ||
(is_android && (current_cpu == "arm" || current_cpu == "arm64"))) {
(is_android && (current_cpu == "arm" || current_cpu == "arm64")) ||
(is_linux && (current_cpu == "arm64"))) {

if (is_android) {
import("//build/config/android/config.gni")
Expand Down

0 comments on commit 06d611c

Please sign in to comment.