1*1789df15SXin Li// 2*1789df15SXin Li// Copyright (C) 2008 The Android Open Source Project 3*1789df15SXin Li// 4*1789df15SXin Li// Licensed under the Apache License, Version 2.0 (the "License"); 5*1789df15SXin Li// you may not use this file except in compliance with the License. 6*1789df15SXin Li// You may obtain a copy of the License at 7*1789df15SXin Li// 8*1789df15SXin Li// http://www.apache.org/licenses/LICENSE-2.0 9*1789df15SXin Li// 10*1789df15SXin Li// Unless required by applicable law or agreed to in writing, software 11*1789df15SXin Li// distributed under the License is distributed on an "AS IS" BASIS, 12*1789df15SXin Li// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*1789df15SXin Li// See the License for the specific language governing permissions and 14*1789df15SXin Li// limitations under the License. 15*1789df15SXin Li// 16*1789df15SXin Li 17*1789df15SXin Lipackage { 18*1789df15SXin Li default_applicable_licenses: ["sdk_eventanalyzer_license"], 19*1789df15SXin Li} 20*1789df15SXin Li 21*1789df15SXin Li// Added automatically by a large-scale-change 22*1789df15SXin Li// See: http://go/android-license-faq 23*1789df15SXin Lilicense { 24*1789df15SXin Li name: "sdk_eventanalyzer_license", 25*1789df15SXin Li visibility: [":__subpackages__"], 26*1789df15SXin Li license_kinds: [ 27*1789df15SXin Li "SPDX-license-identifier-Apache-2.0", 28*1789df15SXin Li ], 29*1789df15SXin Li license_text: [ 30*1789df15SXin Li "NOTICE", 31*1789df15SXin Li ], 32*1789df15SXin Li} 33*1789df15SXin Li 34*1789df15SXin Lijava_binary_host { 35*1789df15SXin Li name: "eventanalyzer", 36*1789df15SXin Li 37*1789df15SXin Li srcs: ["src/**/*.java"], 38*1789df15SXin Li 39*1789df15SXin Li wrapper: "etc/eventanalyzer", 40*1789df15SXin Li main_class: "com.android.eventanalyzer.EventAnalyzer", 41*1789df15SXin Li libs: ["ddmlib-prebuilt"], 42*1789df15SXin Li} 43