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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: base/android/java/templates/PackageConfig.template
diff --git a/base/android/java/templates/PackageConfig.template b/base/android/java/templates/PackageConfig.template
new file mode 100644
index 0000000000000000000000000000000000000000..15b378353a4e4716df3e17a67b3ead3e46adab68
--- /dev/null
+++ b/base/android/java/templates/PackageConfig.template
@@ -0,0 +1,18 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package PACKAGE;
+
+/**
+ * Package-specific build configuration.
+ */
+public class PackageConfig {
+ /** Whether multidex is enabled for this package. */
+ public static final boolean IS_MULTIDEX_ENABLED =
+# if defined(ENABLE_MULTIDEX)
+ true;
+# else
+ false;
+# endif
+}

Powered by Google App Engine
This is Rietveld 408576698