summaryrefslogtreecommitdiffstats
path: root/chrome/test/android/chrome_public_test_support
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/android/chrome_public_test_support')
-rw-r--r--chrome/test/android/chrome_public_test_support/AndroidManifest.xml20
-rw-r--r--chrome/test/android/chrome_public_test_support/BUILD.gn16
2 files changed, 36 insertions, 0 deletions
diff --git a/chrome/test/android/chrome_public_test_support/AndroidManifest.xml b/chrome/test/android/chrome_public_test_support/AndroidManifest.xml
new file mode 100644
index 0000000..0d60c71
--- /dev/null
+++ b/chrome/test/android/chrome_public_test_support/AndroidManifest.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+ <!-- Copyright (c) 2014 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"
+ xmlns:tools="http://schemas.android.com/tools"
+ package="org.chromium.chrome.tests.support">
+ <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
+ <uses-permission android:name="android.permission.INTERNET" />
+ <application>
+ <service android:name="org.chromium.chrome.browser.media.remote.TestMediaRouteProviderService"
+ android:label="testMediaRouteProviderService"
+ android:process=":mrp"
+ tools:ignore="ExportedService" >
+ <intent-filter>
+ <action android:name="android.media.MediaRouteProviderService" />
+ </intent-filter>
+ </service>
+ </application>
+</manifest>
diff --git a/chrome/test/android/chrome_public_test_support/BUILD.gn b/chrome/test/android/chrome_public_test_support/BUILD.gn
new file mode 100644
index 0000000..d65584b
--- /dev/null
+++ b/chrome/test/android/chrome_public_test_support/BUILD.gn
@@ -0,0 +1,16 @@
+# 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.
+
+import("//build/config/android/config.gni")
+import("//build/config/android/rules.gni")
+
+# GYP: //clank/native/clank.gyp:chrome_public_test_support_apk
+android_apk("chrome_public_test_support_apk") {
+ deps = [
+ "//chrome/test/android/cast_emulator:cast_emulator",
+ ]
+
+ apk_name = "ChromePublicTestSupport"
+ android_manifest = "AndroidManifest.xml"
+}