Skip to content

Commit

Permalink
Updates required for latest ICU BUILD.gn. (flutter#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
chinmaygarde authored Aug 24, 2017
1 parent 4c89f31 commit baaae21
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build/config/android/config.gni
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ if (is_android) {

# Set to true to enable the Errorprone compiler
use_errorprone_java_compiler = false

# Unused. Required for GN files maintained in other buildroots.
enable_java_templates = false
}

# Host stuff -----------------------------------------------------------------
Expand Down
27 changes: 27 additions & 0 deletions build/config/host_byteorder.gni
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Copyright (c) 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# This header file defines the "host_byteorder" variable.
# Not that this is currently used only for building v8.
# The chromium code generally assumes little-endianness.
declare_args() {
host_byteorder = "undefined"
}

# Detect host byteorder
# ppc64 can be either BE or LE
if (host_cpu == "ppc64") {
if (current_os == "aix") {
host_byteorder = "big"
} else {
# Only use the script when absolutely necessary
host_byteorder =
exec_script("//build/config/get_host_byteorder.py", [], "trim string")
}
} else if (host_cpu == "ppc" || host_cpu == "s390" || host_cpu == "s390x" ||
host_cpu == "mips" || host_cpu == "mips64") {
host_byteorder = "big"
} else {
host_byteorder = "little"
}

0 comments on commit baaae21

Please sign in to comment.