diff options
author | yusufo@chromium.org <yusufo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-18 17:53:45 +0000 |
---|---|---|
committer | yusufo@chromium.org <yusufo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-18 17:53:45 +0000 |
commit | 030353aa27ef75c78caf7affb714b9f25c91e443 (patch) | |
tree | 997c86234d954c2db87f2a3aa3a1757f24c1f77a /build | |
parent | 6c576c24bdfdd14904a7afafab81c6a4a9921e8d (diff) | |
download | chromium_src-030353aa27ef75c78caf7affb714b9f25c91e443.zip chromium_src-030353aa27ef75c78caf7affb714b9f25c91e443.tar.gz chromium_src-030353aa27ef75c78caf7affb714b9f25c91e443.tar.bz2 |
Revert of Disable excluding of tested apk's code in test apks (https://codereview.chromium.org/331683005/)
Reason for revert:
We are hitting the issue in https://code.google.com/p/chromium/issues/detail?id=272790 again. So we will have to reenable this fix.
The failing tests are being handled in separate CLs I believe.
Original issue's description:
> The new way of building test APKs loses some
> necessary classes from them, hence causing them to fail with
> "Class not found" errors.
>
> Disable this until we have a fix.
>
> BUG=384537,272790
>
> Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=277756
TBR=aberent@chromium.org,cjhopman@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=384537,272790
Review URL: https://codereview.chromium.org/341973002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278118 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/java_apk.gypi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/java_apk.gypi b/build/java_apk.gypi index fa1c421..92c8cfa 100644 --- a/build/java_apk.gypi +++ b/build/java_apk.gypi @@ -162,7 +162,7 @@ 'conditions': [ ['proguard_enabled == "true"', { 'variables': { - #'proguard_enabled': 'true', + 'proguard_enabled': 'true', } }], ], @@ -713,7 +713,7 @@ ['is_test_apk == 1 and tested_apk_dex_path != "/"', { 'variables': { 'dex_additional_options': [ - #'--excluded-paths-file', '>(tested_apk_dex_path).inputs' + '--excluded-paths-file', '>(tested_apk_dex_path).inputs' ], }, 'inputs': [ |