Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |