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

Unified Diff: base/android/java/templates/ChromiumMultiDex.template

Issue 1597273005: Move ChromiumMultiDex to BuildConfig. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 10 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
« no previous file with comments | « base/android/java/templates/BuildConfig.template ('k') | base/base.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/java/templates/ChromiumMultiDex.template
diff --git a/base/android/java/templates/ChromiumMultiDex.template b/base/android/java/templates/ChromiumMultiDex.template
deleted file mode 100644
index 7e70701c76a944e37d742b16b8cd002adac18366..0000000000000000000000000000000000000000
--- a/base/android/java/templates/ChromiumMultiDex.template
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright 2015 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 org.chromium.base.multidex;
-
-/**
- * Multidex configuration. Generated on a per-target basis.
- */
-class ChromiumMultiDex {
-
- /** Whether multidex is enabled for this target.
- *
- * This has to be a function instead of a static final boolean s.t. the initial false value
- * doesn't get optimized into {@link ChromiumMultiDexInstaller} at base_java compile time.
- */
- static boolean isMultidexEnabled() {
-#if defined(ENABLE_MULTIDEX)
- return true;
-#else
- return false;
-#endif
- }
-
-}
« no previous file with comments | « base/android/java/templates/BuildConfig.template ('k') | base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698