Fix build breakage due to broken CTS dependencies.

CtsVerifier depended on a static library that was built directly
against the platform, but it depended on the SDK.

This meant that proguard would complain about references in the
static library that were hidden from the SDK (arraycopy(float[]...)
in this case.

This is unsafe in general, but safe in the specific case where
the SDK stubs are generated from the platform that the static library
builds against.

This change compiles CtsVerifier against the platform to fix the build
as a short term workaround.

(cherry picked from commit 0d1f0d5e5c30df6f4cb50296e82af7bd0c4871bb)

Change-Id: Ic245e53cb57ca83e0c0053202bb7d12000aed07c
2 files changed