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

Unified Diff: chrome/android/webapk/libs/runtime_library/javatests/apk_with_webapk_service/AndroidManifest.xml

Issue 2225683002: Re-enable WebApkServiceImplTest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/libs/runtime_library/javatests/apk_with_webapk_service/AndroidManifest.xml
diff --git a/chrome/android/webapk/libs/runtime_library/javatests/apk_with_webapk_service/AndroidManifest.xml b/chrome/android/webapk/libs/runtime_library/javatests/apk_with_webapk_service/AndroidManifest.xml
new file mode 100644
index 0000000000000000000000000000000000000000..ca4dede4781cd32af87fd58197a7a25b704a89ca
--- /dev/null
+++ b/chrome/android/webapk/libs/runtime_library/javatests/apk_with_webapk_service/AndroidManifest.xml
@@ -0,0 +1,17 @@
+<?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. -->
+
+<!-- package name must be unique. -->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.chromium.webapk.lib.runtime_library.test.apk_with_webapk_service">
+
+ <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" />
+
+ <application>
+ <service android:name="org.chromium.webapk.lib.runtime_library.test.TestWebApkServiceImplWrapper"
+ android:exported="true">
+ </service>
+ </application>
+</manifest>

Powered by Google App Engine
This is Rietveld 408576698