Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(310)

Unified Diff: build/common.gypi

Issue 772123003: Revert "Use thumb versions of external libraries with ARMv7." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/setup.gyp ('k') | build/config/android/config.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 8c8bfc1003d5beff85fad49631f5c40de3e41269..cbdda38a219d2e1681ed3d3768bdcebd89fa3eed 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -2349,7 +2349,6 @@
}, {
'use_seccomp_bpf%': 0,
}],
-
# Set component build with LTO until all tests pass.
# This also reduces link time.
['use_lto==1', {
@@ -2388,7 +2387,7 @@
# Whether to allow building of the GPU-related isolates.
'archive_gpu_tests%': 0,
- # Whether to allow building of chromoting related isolates.
+ # Whether to allow building of chromoting related isolates.
'archive_chromoting_tests%': 0,
},
'target_defaults': {
@@ -4638,19 +4637,10 @@
'--sysroot=<(android_ndk_sysroot)',
'-nostdlib',
],
- 'variables': {
- 'conditions': [
- ['target_arch=="arm" and arm_thumb==1', {
- 'thumb_option%': '-mthumb',
- }, {
- 'thumb_option%': '',
- }],
- ],
- },
'libraries': [
'-l<(android_stlport_library)',
# Manually link the libgcc.a that the cross compiler uses.
- '<!(<(android_toolchain)/*-gcc <(thumb_option) -print-libgcc-file-name)',
+ '<!(<(android_toolchain)/*-gcc -print-libgcc-file-name)',
'-lc',
'-ldl',
'-lm',
@@ -4715,12 +4705,8 @@
'cflags': [
'-isystem<(android_stlport_include)',
],
- 'conditions': [
- ['target_arch=="arm" and arm_thumb==1', {
- 'ldflags': [ '-L<(android_stlport_libs_dir)/thumb' ]
- }, {
- 'ldflags': [ '-L<(android_stlport_libs_dir)' ]
- }],
+ 'ldflags': [
+ '-L<(android_stlport_libs_dir)',
],
}, { # else: android_webview_build!=0
'aosp_build_settings': {
« no previous file with comments | « build/android/setup.gyp ('k') | build/config/android/config.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698