| Eric Holk | e6e17c7 | 2019-06-18 14:07:35 -0700 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2019 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 | |
| Bob Badour | e539dba | 2021-02-12 17:07:05 -0800 | [diff] [blame] | 17 | package { |
| 18 | // See: http://go/android-license-faq |
| 19 | // A large-scale-change added 'default_applicable_licenses' to import |
| 20 | // all of the 'license_kinds' from "frameworks_base_license" |
| 21 | // to get the below license kinds: |
| 22 | // SPDX-license-identifier-Apache-2.0 |
| 23 | default_applicable_licenses: ["frameworks_base_license"], |
| 24 | } |
| 25 | |
| Eric Holk | e6e17c7 | 2019-06-18 14:07:35 -0700 | [diff] [blame] | 26 | android_app { |
| 27 | name: "startop_test_app", |
| 28 | srcs: [ |
| Eric Holk | 12daf35 | 2019-11-13 14:06:01 -0800 | [diff] [blame] | 29 | "src/ApplicationBenchmarks.java", |
| Eric Holk | c62b083 | 2019-10-11 14:55:39 -0700 | [diff] [blame] | 30 | "src/ComplexLayoutInflationActivity.java", |
| David Sehr | ac51da9 | 2019-10-22 15:04:08 -0700 | [diff] [blame] | 31 | "src/CPUIntensiveBenchmarkActivity.java", |
| 32 | "src/CPUIntensiveBenchmarks.java", |
| Eric Holk | e6e17c7 | 2019-06-18 14:07:35 -0700 | [diff] [blame] | 33 | "src/EmptyActivity.java", |
| Carmen Jackson | 8be08e5 | 2019-06-26 16:52:06 -0700 | [diff] [blame] | 34 | "src/FrameLayoutInflationActivity.java", |
| David Sehr | 8fcf8f4 | 2019-10-23 15:05:03 -0700 | [diff] [blame] | 35 | "src/InitCheckOverheadBenchmarkActivity.java", |
| 36 | "src/InitCheckOverheadBenchmarks.java", |
| Eric Holk | c62b083 | 2019-10-11 14:55:39 -0700 | [diff] [blame] | 37 | "src/LayoutInflationActivity.java", |
| Eric Holk | afb9b08 | 2019-11-13 15:24:40 -0800 | [diff] [blame] | 38 | "src/NonInteractiveMicrobenchmarkActivity.java", |
| 39 | "src/InteractiveMicrobenchmarkActivity.java", |
| Eric Holk | 77743f3 | 2019-10-11 13:03:57 -0700 | [diff] [blame] | 40 | "src/SystemServerBenchmarks.java", |
| Carmen Jackson | 8be08e5 | 2019-06-26 16:52:06 -0700 | [diff] [blame] | 41 | "src/TextViewInflationActivity.java", |
| Eric Holk | e6e17c7 | 2019-06-18 14:07:35 -0700 | [diff] [blame] | 42 | ], |
| Eric Holk | e5cdca7 | 2019-09-12 10:39:17 -0700 | [diff] [blame] | 43 | sdk_version: "26", // Android O (8.0) and higher |
| Eric Holk | e6e17c7 | 2019-06-18 14:07:35 -0700 | [diff] [blame] | 44 | } |