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

Side by Side Diff: build/toolchain/android/BUILD.gn

Issue 2378223002: Roll buildtools forward and fix GN build for it. (Closed)
Patch Set: Created 4 years, 2 months 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 unified diff | Download patch
« no previous file with comments | « build/config/compiler/BUILD.gn ('k') | build/toolchain/gcc_toolchain.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/sysroot.gni") # Imports android/config.gni. 5 import("//build/config/sysroot.gni") # Imports android/config.gni.
6 import("//build/toolchain/ccache.gni") 6 import("//build/toolchain/ccache.gni")
7 import("//build/toolchain/clang.gni") 7 import("//build/toolchain/clang.gni")
8 import("//build/toolchain/goma.gni") 8 import("//build/toolchain/goma.gni")
9 import("//build/toolchain/gcc_toolchain.gni") 9 import("//build/toolchain/gcc_toolchain.gni")
10 10
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 android_ndk_lib_dir = "usr/lib64" 135 android_ndk_lib_dir = "usr/lib64"
136 136
137 tool_prefix = "$x86_64_android_toolchain_root/bin/x86_64-linux-android-" 137 tool_prefix = "$x86_64_android_toolchain_root/bin/x86_64-linux-android-"
138 toolchain_cpu = "x86_64" 138 toolchain_cpu = "x86_64"
139 } 139 }
140 140
141 android_gcc_toolchains_helper("arm64") { 141 android_gcc_toolchains_helper("arm64") {
142 android_ndk_sysroot = "$android_ndk_root/$arm64_android_sysroot_subdir" 142 android_ndk_sysroot = "$android_ndk_root/$arm64_android_sysroot_subdir"
143 android_ndk_lib_dir = "usr/lib" 143 android_ndk_lib_dir = "usr/lib"
144 144
145 tool_prefix = "$arm64_android_toolchain_root/bin/arm-linux-androideabi-" 145 tool_prefix = "$arm64_android_toolchain_root/bin/aarch64-linux-android-"
146 toolchain_cpu = "aarch64" 146 toolchain_cpu = "aarch64"
147 } 147 }
148 148
149 android_gcc_toolchains_helper("mips64el") { 149 android_gcc_toolchains_helper("mips64el") {
150 android_ndk_sysroot = "$android_ndk_root/$mips64_android_sysroot_subdir" 150 android_ndk_sysroot = "$android_ndk_root/$mips64_android_sysroot_subdir"
151 android_ndk_lib_dir = "usr/lib64" 151 android_ndk_lib_dir = "usr/lib64"
152 152
153 tool_prefix = "$mips64_android_toolchain_root/bin/mipsel-linux-android-" 153 tool_prefix = "$mips64_android_toolchain_root/bin/mipsel-linux-android-"
154 toolchain_cpu = "mipsel64el" 154 toolchain_cpu = "mipsel64el"
155 } 155 }
OLDNEW
« no previous file with comments | « build/config/compiler/BUILD.gn ('k') | build/toolchain/gcc_toolchain.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698