• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package {
16    default_team: "trendy_team_partner_eng",
17    // See: http://go/android-license-faq
18    default_applicable_licenses: [
19        "Android-Apache-2.0",
20    ],
21}
22
23android_test {
24    name: "ShortcutLauncherDemo",
25    // WARNING: Unknown module tag "samples"
26    aaptflags: [
27        "--rename-manifest-package com.example.android.pm.shortcutlauncherdemo",
28    ],
29    srcs: [
30        "common/src/**/*.java",
31        "launcher/src/**/*.java",
32    ],
33    resource_dirs: [
34        "common/res",
35        "launcher/res",
36        "launcher/res1",
37    ],
38    static_libs: [
39        "androidx.legacy_legacy-support-v4",
40        "androidx.legacy_legacy-support-v13",
41    ],
42    manifest: "launcher/AndroidManifest.xml",
43    sdk_version: "current",
44}
45
46android_test {
47    name: "ShortcutLauncherDemo2",
48    // WARNING: Unknown module tag "samples"
49    aaptflags: [
50        "--rename-manifest-package com.example.android.pm.shortcutlauncherdemo2",
51    ],
52    srcs: [
53        "common/src/**/*.java",
54        "launcher/src/**/*.java",
55    ],
56    resource_dirs: [
57        "common/res",
58        "launcher/res",
59        "launcher/res2",
60    ],
61    static_libs: [
62        "androidx.legacy_legacy-support-v4",
63        "androidx.legacy_legacy-support-v13",
64    ],
65    manifest: "launcher/AndroidManifest.xml",
66    sdk_version: "current",
67}
68
69android_test {
70    name: "ShortcutDemo",
71    static_libs: ["androidx.legacy_legacy-support-v4"],
72    // WARNING: Unknown module tag "samples"
73    aaptflags: [
74        "--rename-manifest-package com.example.android.pm.shortcutdemo",
75    ],
76    srcs: [
77        "common/src/**/*.java",
78        "publisher/src/**/*.java",
79    ],
80    resource_dirs: [
81        "common/res",
82        "publisher/res",
83        "publisher/res1",
84    ],
85    manifest: "publisher/AndroidManifest.xml",
86    sdk_version: "current",
87}
88
89android_test {
90    name: "ShortcutDemo2",
91    static_libs: ["androidx.legacy_legacy-support-v4"],
92    // WARNING: Unknown module tag "samples"
93    aaptflags: [
94        "--rename-manifest-package com.example.android.pm.shortcutdemo2",
95    ],
96    srcs: [
97        "common/src/**/*.java",
98        "publisher/src/**/*.java",
99    ],
100    resource_dirs: [
101        "common/res",
102        "publisher/res",
103        "publisher/res2",
104    ],
105    manifest: "publisher/AndroidManifest.xml",
106    sdk_version: "current",
107}
108