Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1295)

Side by Side Diff: testing/android/proguard_for_tests.flags

Issue 2160693002: Turning obfuscation on (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@annotation
Patch Set: broken Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « testing/android/proguard_for_test.flags ('k') | testing/android/proguard_under_test.flags » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « testing/android/proguard_for_test.flags ('k') | testing/android/proguard_under_test.flags » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698