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

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

Issue 1465383003: [Android] Add ChromiumNetTestSupport.apk for the java EmbeddedTestServer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: +landmine for GN Created 5 years 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/BUILD.gn ('k') | base/base.gyp » ('j') | build/get_landmines.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/java/templates/NativeLibraries.template
diff --git a/base/android/java/templates/NativeLibraries.template b/base/android/java/templates/NativeLibraries.template
index 8b812a60a968ce05b1f23bae618799e4a78da44c..4d81d45e667a544d3c16cf2c57b3066fabf23235 100644
--- a/base/android/java/templates/NativeLibraries.template
+++ b/base/android/java/templates/NativeLibraries.template
@@ -2,12 +2,20 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-package org.chromium.base.library_loader;
+#ifndef NATIVE_LIBRARIES_PACKAGE
+#define NATIVE_LIBRARIES_PACKAGE org.chromium.base.library_loader
+#endif
+
+package NATIVE_LIBRARIES_PACKAGE;
import org.chromium.base.annotations.SuppressFBWarnings;
+#ifndef NATIVE_LIBRARIES_CLASS_NAME
+#define NATIVE_LIBRARIES_CLASS_NAME NativeLibraries
+#endif
+
@SuppressFBWarnings
-public class NativeLibraries {
+public class NATIVE_LIBRARIES_CLASS_NAME {
/**
* IMPORTANT NOTE: The variables defined here must _not_ be 'final'.
*
« no previous file with comments | « base/BUILD.gn ('k') | base/base.gyp » ('j') | build/get_landmines.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698