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

Unified Diff: build/config/android/BUILD.gn

Issue 1367403002: Remove the GN *sdk targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: build/config/android/BUILD.gn
diff --git a/build/config/android/BUILD.gn b/build/config/android/BUILD.gn
index 0514b43e73b308e967227404bad6e1cccb44822f..bb78230fd449c41b9a118b39caa5b8bd5d8887de 100644
--- a/build/config/android/BUILD.gn
+++ b/build/config/android/BUILD.gn
@@ -191,22 +191,6 @@ config("runtime_library") {
}
}
-config("sdk") {
- if (sysroot != "") {
- cflags = [ "--sysroot=" + sysroot ]
- ldflags = [ "--sysroot=" + sysroot ]
-
- # Need to get some linker flags out of the sysroot.
- sysroot_ld_path = rebase_path("//build/config/linux/sysroot_ld_path.py")
- ldflags += [ exec_script(sysroot_ld_path,
- [
- rebase_path("//build/linux/sysroot_ld_path.sh"),
- sysroot,
- ],
- "value") ]
- }
-}
-
config("executable_config") {
cflags = [ "-fPIE" ]
ldflags = [ "-pie" ]

Powered by Google App Engine
This is Rietveld 408576698