blob: e70b8e0cdbd3ed17caf44f9b1ffd01c5d050064e [file] [log] [blame]
Yigit Boyar2abb89a2022-02-14 17:15:40 -08001/*
2 * Copyright 2022 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17// see ../playground-common/README.md for details on how this works
18pluginManagement {
19 includeBuild "../playground-common/playground-plugin"
20}
21plugins {
22 id "playground"
23}
24
25rootProject.name = "collections-playground"
26
27playground {
28 setupPlayground("..")
29 selectProjectsFromAndroidX({ name ->
Yigit Boyar2abb89a2022-02-14 17:15:40 -080030 if (name.startsWith(":collection")) return true
Dustin Lam88f94402022-10-17 15:11:11 -070031 if (name == ":benchmark:benchmark-darwin") return true
32 if (name == ":benchmark:benchmark-darwin-core") return true
Yigit Boyar2abb89a2022-02-14 17:15:40 -080033 if (name == ":internal-testutils-truth") return true
34 return false
35 })
36}
37