blob: 6f26bf088a3ec31be4db45dc87090ee7316170b1 [file] [log] [blame]
Sasha Smundak2a11aab2019-01-11 15:44:10 -08001//
2// Copyright (C) 2009 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 Badourd863f0b2021-02-03 23:58:01 -080017package {
Bob Badour47d1d282022-01-27 22:36:46 -080018 // http://go/android-license-faq
19 default_applicable_licenses: ["Android-Apache-2.0"],
Bob Badourd863f0b2021-02-03 23:58:01 -080020}
21
Sasha Smundak2a11aab2019-01-11 15:44:10 -080022android_app {
23 name: "QuickSearchBox",
Damian Patel3926d312021-08-03 20:23:36 +000024 sdk_version: "current",
Sasha Smundak2a11aab2019-01-11 15:44:10 -080025 static_libs: [
26 "guava",
27 "android-common",
28 ],
29 srcs: [
30 "src/**/*.java",
31 "src/**/*.logtags",
32 ],
33 certificate: "shared",
Anton Hansson46a75242019-01-11 15:03:23 +000034 product_specific: true,
Sasha Smundak2a11aab2019-01-11 15:44:10 -080035 resource_dirs: ["res"],
36 optimize: {
37 proguard_flags_files: ["proguard.flags"],
38 },
39}