OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # No need to cut stuff out of the instrumentation tests. |
| 6 -dontoptimize |
| 7 -dontshrink |
| 8 -dontskipnonpubliclibraryclassmembers |
| 9 |
| 10 -dontwarn android.webkit.WebView* |
| 11 -dontwarn org.apache.http.conn.scheme.LayeredSocketFactory |
| 12 -dontwarn org.chromium.chrome.browser.notifications.WebApkNotificationClient$* |
| 13 -dontwarn org.chromium.webapk.lib.client.WebApkServiceConnectionManager$* |
| 14 |
| 15 -keep class * extends junit.framework.TestCase { |
| 16 *; |
| 17 } |
| 18 |
| 19 # We don't want BasicHttpParams or AbstractHttpParams to get renamed since that |
| 20 # then makes our calls to them use the implementation that we find in our .dex |
| 21 # file, which is broken. We need to rely on these calls resolving to the |
| 22 # system's implementation. See crbug.com/488192#c36. |
| 23 -keep class org.apache.** { |
| 24 *; |
| 25 } |
OLD | NEW |