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

Unified Diff: chrome/android/webapk/shell_apk/javatests/dex_optimizer/AndroidManifest.xml

Issue 1981473002: Upstream: DexOptimizer and DexLoader classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: chrome/android/webapk/shell_apk/javatests/dex_optimizer/AndroidManifest.xml
diff --git a/chrome/android/webapk/shell_apk/javatests/dex_optimizer/AndroidManifest.xml b/chrome/android/webapk/shell_apk/javatests/dex_optimizer/AndroidManifest.xml
new file mode 100644
index 0000000000000000000000000000000000000000..96510d7023e9b0f3e1a5de8cd7589056799deea2
--- /dev/null
+++ b/chrome/android/webapk/shell_apk/javatests/dex_optimizer/AndroidManifest.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2016 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.
+-->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.chromium.webapk.shell_apk.test.dex_optimizer"
+ android:versionName="1.0" >
+
+ <uses-sdk
+ android:minSdkVersion="16"
+ android:targetSdkVersion="23" />
+
+ <application android:label="DexOptimizer">
+ <service
+ android:name="org.chromium.webapk.shell_apk.test.dex_optimizer.DexOptimizerServiceImpl"
+ android:exported="true">
+ </service>
+ </application>
+
+</manifest>

Powered by Google App Engine
This is Rietveld 408576698