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

Side by Side Diff: base/android/java/templates/PackageConfig.template

Issue 2834603006: ABANDONED [android] Create per-package configuration for multidex. (Closed)
Patch Set: tweaks Created 3 years, 8 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
OLDNEW
(Empty)
1 // Copyright 2017 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 package PACKAGE;
6
7 /**
8 * Package-specific build configuration.
9 */
10 public class PackageConfig {
11 /** Whether multidex is enabled for this package. */
12 public static final boolean IS_MULTIDEX_ENABLED =
13 # if defined(ENABLE_MULTIDEX)
14 true;
15 # else
16 false;
17 # endif
18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698