From bdaf60b2d61275e783c2d76ac594b62e095c2fca Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Sun, 4 Dec 2016 21:51:50 -0800 Subject: [PATCH] Replace tabs with spaces in gradle files. --- build.gradle | 10 +++++----- toolchains/arm.gradle | 8 ++++---- toolchains/native.gradle | 12 ++++++------ 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/build.gradle b/build.gradle index 112cbc0b92..941f607d29 100644 --- a/build.gradle +++ b/build.gradle @@ -54,11 +54,11 @@ apply from: "dependencies.gradle" ext.setupDefines = { project, binaries -> binaries.all { - if (project.hasProperty('debug')) { - project.setupDebugDefines(cppCompiler, linker) - } else { - project.setupReleaseDefines(cppCompiler, linker) - } + if (project.hasProperty('debug')) { + project.setupDebugDefines(cppCompiler, linker) + } else { + project.setupReleaseDefines(cppCompiler, linker) + } tasks.withType(CppCompile) { if (!project.hasProperty('compilerPrefix') && targetPlatform.architecture.name == 'arm-v7') { project.addWpiUtilSharedLibraryLinks(it, linker, targetPlatform) diff --git a/toolchains/arm.gradle b/toolchains/arm.gradle index 894244c3ad..dae641568e 100644 --- a/toolchains/arm.gradle +++ b/toolchains/arm.gradle @@ -4,10 +4,10 @@ ext.buildPlatform = 'arm' def compilerPrefix = project.hasProperty('compilerPrefix') ? project.compilerPrefix : 'arm-frc-linux-gnueabi-' model { platforms { - arm { - architecture 'arm' - operatingSystem 'linux' - } + arm { + architecture 'arm' + operatingSystem 'linux' + } } toolChains { gcc(Gcc) { diff --git a/toolchains/native.gradle b/toolchains/native.gradle index 10d8b8a7f9..b5597eb19d 100644 --- a/toolchains/native.gradle +++ b/toolchains/native.gradle @@ -15,11 +15,11 @@ if (OperatingSystem.current().isLinux()) { model { platforms { - x86 { - architecture 'x86' - } - x64 { - architecture 'x86_64' - } + x86 { + architecture 'x86' + } + x64 { + architecture 'x86_64' + } } }