History log of /external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
f15132fdcf5aabb874f1c151a872efe54ee95118 04-May-2015 borenet <borenet@google.com> Support SKIA_OUT on Mac and ChromeOS

BUG=skia:3774

Review URL: https://codereview.chromium.org/1122593003
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
ac813d8a1212bf31c75a564a57fe5240edb84019 03-Apr-2015 mtklein <mtklein@chromium.org> Try ARMv7 and NEON for Daisy.

I think Daisy's color order problems are in non-NEON ARM assembly.
NEON might actually be fine.

BUG=skia:1843

Committed: https://skia.googlesource.com/skia/+/a121c0ee6b911dd7004c6054a8692d37084b6b3d

CQ_EXTRA_TRYBOTS=client.skia.compile:Build-Ubuntu-GCC-Arm7-Debug-CrOS_Daisy-Trybot,Build-Ubuntu-GCC-Arm7-Debug-Android_Neon-Trybot,Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot,Build-Ubuntu-GCC-Arm64-Debug-Android-Trybot

Review URL: https://codereview.chromium.org/1054233002
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
fb806dd27d93d09a1aedac6c4666f4424c7d9c7d 03-Apr-2015 mtklein <mtklein@google.com> Revert of Try ARMv7 and NEON for Daisy. (patchset #1 id:1 of https://codereview.chromium.org/1054233002/)

Reason for revert:
whatever compiler we're using can't handle array subscripts for neon vectors

Original issue's description:
> Try ARMv7 and NEON for Daisy.
>
> I think Daisy's color order problems are in non-NEON ARM assembly.
> NEON might actually be fine.
>
> BUG=skia:1843
>
> Committed: https://skia.googlesource.com/skia/+/a121c0ee6b911dd7004c6054a8692d37084b6b3d

TBR=mtklein@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=skia:1843

Review URL: https://codereview.chromium.org/1058173002
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
a121c0ee6b911dd7004c6054a8692d37084b6b3d 03-Apr-2015 Mike Klein <mtklein@google.com> Try ARMv7 and NEON for Daisy.

I think Daisy's color order problems are in non-NEON ARM assembly.
NEON might actually be fine.

BUG=skia:1843

Review URL: https://codereview.chromium.org/1054233002
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
a41699271fa9291d6c165087c9be168deda966e5 02-Apr-2015 Mike Klein <mtklein@google.com> back to plain arm for the night

It's looking like the previous CL did not fix the Daisy bot GMs,
even though that's still the only bit of code I can find that was
ignoring color order. Puzzled. Reverting arm_version=7 for now.

BUG=skia:1843

Review URL: https://codereview.chromium.org/1051423002
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
2d33a1d0b03dc7cb171c6f34680f1966fa686d38 02-Apr-2015 mtklein <mtklein@chromium.org> Streamline Thumb config.

Enable Thumb2 iff ARM v7. (We don't turn it on today for ARM <v7, and ARM v8 doesn't support it.)

BUG=skia:

Review URL: https://codereview.chromium.org/1054993002
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
83c645922839b7d742268d9c4b01e2a43fb8f81b 02-Apr-2015 mtklein <mtklein@chromium.org> Make Daisy ARMv7.

This should be a ~noop as far as gold.skia.org goes.
After this, I'll try out NEON.

BUG=skia:1843

Review URL: https://codereview.chromium.org/1056793004
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
cb49c07b7361029ba9992ca05f0f2aa5a79a52f5 02-Apr-2015 mtklein <mtklein@chromium.org> tidy up chromeos_setup.sh

- remove unused alex
- streamline Link's config
- remove misleading Daisy config:
1) armv7=1 does nothing. We meant to type arm_version=7 here.
2) arm_neon=1 does nothing unless arm_version == 7.
3) arm_thumb=0 is the default when arm_version <= 7.
4) skia_arch_width=32 is the default when skia_arch_type=arm.

I'd just fix this to make Daisy arm_version=7 and arm_neon=1 (and
arm_thumb=1, which I'm going to separately make the default for
arm_version=7), but there are known color-order bugs with our
NEON procs that would make Daisy start pushing bad images to
Gold. Going to take baby steps here...

BUG=skia:1843

Committed: https://skia.googlesource.com/skia/+/3c2809bc612f4a265770914f860d214c9665dc4a

CQ_EXTRA_TRYBOTS=client.skia.compile:Build-Ubuntu-GCC-Arm7-Debug-CrOS_Daisy-Trybot

Review URL: https://codereview.chromium.org/1051253002
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
192945e92ef7ef97a307db636f242d58c98fff4e 02-Apr-2015 mtklein <mtklein@google.com> Revert of tidy up chromeos_setup.sh (patchset #1 id:1 of https://codereview.chromium.org/1051253002/)

Reason for revert:
arm_thumb not defined

Original issue's description:
> tidy up chromeos_setup.sh
>
> - remove unused alex
> - streamline Link's config
> - remove misleading Daisy config:
> 1) armv7=1 does nothing. We meant to type arm_version=7 here.
> 2) arm_neon=1 does nothing unless arm_version == 7.
> 3) arm_thumb=0 is the default when arm_version <= 7.
> 4) skia_arch_width=32 is the default when skia_arch_type=arm.
>
> I'd just fix this to make Daisy arm_version=7 and arm_neon=1 (and
> arm_thumb=1, which I'm going to separately make the default for
> arm_version=7), but there are known color-order bugs with our
> NEON procs that would make Daisy start pushing bad images to
> Gold. Going to take baby steps here...
>
> BUG=skia:1843
>
> Committed: https://skia.googlesource.com/skia/+/3c2809bc612f4a265770914f860d214c9665dc4a

TBR=borenet@google.com,mtklein@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=skia:1843

Review URL: https://codereview.chromium.org/1059443002
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
3c2809bc612f4a265770914f860d214c9665dc4a 02-Apr-2015 mtklein <mtklein@chromium.org> tidy up chromeos_setup.sh

- remove unused alex
- streamline Link's config
- remove misleading Daisy config:
1) armv7=1 does nothing. We meant to type arm_version=7 here.
2) arm_neon=1 does nothing unless arm_version == 7.
3) arm_thumb=0 is the default when arm_version <= 7.
4) skia_arch_width=32 is the default when skia_arch_type=arm.

I'd just fix this to make Daisy arm_version=7 and arm_neon=1 (and
arm_thumb=1, which I'm going to separately make the default for
arm_version=7), but there are known color-order bugs with our
NEON procs that would make Daisy start pushing bad images to
Gold. Going to take baby steps here...

BUG=skia:1843

Review URL: https://codereview.chromium.org/1051253002
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
58d69d846071ff9a84e879041f2f092006bfcd14 01-Apr-2014 epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> change default build (in "make" wrapper) to ninja on all platforms

force-landed from https://codereview.chromium.org/206463007/ ;
the CommitQueue couldn't handle the diff properly for some reason



git-svn-id: http://skia.googlecode.com/svn/trunk@14003 2bbb7eff-a529-9590-31e7-b0007b416f81
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
bc4bed132fd6693e16f8305db211530588095755 25-Jun-2013 borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> Temporarily disable gpu on chromeos

Unreviewed.
(SkipBuildbotRuns)

Review URL: https://codereview.chromium.org/17611013

git-svn-id: http://skia.googlecode.com/svn/trunk@9747 2bbb7eff-a529-9590-31e7-b0007b416f81
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
5ec130524e61fe1e2606baab53bc1c2e77287d06 19-Jun-2013 borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> Use "Simple Chrome for Chrome OS Workflow" to build Skia for ChromeOS

(SkipBuildbotRuns) since this isn't used yet.

R=djsollen@google.com

Review URL: https://codereview.chromium.org/17412007

git-svn-id: http://skia.googlecode.com/svn/trunk@9681 2bbb7eff-a529-9590-31e7-b0007b416f81
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh
05d550ed364d459233874a6dcc1af3c95f195548 11-Jun-2013 borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> GYP Changes and Scripts for Compiling Skia for ChromeOS

For now, this requires having a complete ChromeOS checkout.

R=djsollen@google.com

Review URL: https://codereview.chromium.org/16099011

git-svn-id: http://skia.googlecode.com/svn/trunk@9505 2bbb7eff-a529-9590-31e7-b0007b416f81
/external/skia/platform_tools/chromeos/bin/chromeos_setup.sh