summaryrefslogtreecommitdiffstats
path: root/build/android/envsetup_functions.sh
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-27 19:53:58 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-27 19:53:58 +0000
commit318f5d13c16fe4fef8df5c4f3378852ff9b7f781 (patch)
tree5e043c082da808e414424d673501d29a11dac95f /build/android/envsetup_functions.sh
parent7c0c90ea823431445c34e61846f84f25bee40e06 (diff)
downloadchromium_src-318f5d13c16fe4fef8df5c4f3378852ff9b7f781.zip
chromium_src-318f5d13c16fe4fef8df5c4f3378852ff9b7f781.tar.gz
chromium_src-318f5d13c16fe4fef8df5c4f3378852ff9b7f781.tar.bz2
android envsetup: Stop setting ORDER_DEFINES.
order_text_section is only used by the chrome_initial target, which isn't used on android. (Some internal gyp file explicitly adds -Wl,-section-ordering-file without going through the order_text_section gyp define, so this setting here is likely a remnant from when that wasn't the case.) No intended behavior change. BUG=330631 NOTRY=true Review URL: https://codereview.chromium.org/148513002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247283 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/android/envsetup_functions.sh')
-rwxr-xr-xbuild/android/envsetup_functions.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/build/android/envsetup_functions.sh b/build/android/envsetup_functions.sh
index c72f566..d04ca73 100755
--- a/build/android/envsetup_functions.sh
+++ b/build/android/envsetup_functions.sh
@@ -98,18 +98,10 @@ ${ANDROID_SDK_BUILD_TOOLS_VERSION}
DEFINES+=" use_goma=1 gomadir=$GOMA_DIR"
fi
- # The order file specifies the order of symbols in the .text section of the
- # shared library, libchromeview.so. The file is an order list of section
- # names and the library is linked with option
- # --section-ordering-file=<orderfile>. The order file is updated by profiling
- # startup after compiling with the order_profiling=1 GYP_DEFINES flag.
- ORDER_DEFINES="order_text_section=${CHROME_SRC}/orderfiles/orderfile.out"
-
# The following defines will affect ARM code generation of both C/C++ compiler
# and V8 mksnapshot.
case "${TARGET_ARCH}" in
"arm")
- DEFINES+=" ${ORDER_DEFINES}"
DEFINES+=" target_arch=arm"
;;
"x86")