2017-08-05 01:28:47 +02:00
|
|
|
//
|
2018-06-16 00:16:20 +02:00
|
|
|
// Copyright (C) 2006 The Android Open Source Project
|
2017-08-05 01:28:47 +02:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
|
|
|
cc_defaults {
|
|
|
|
name: "logcat_defaults",
|
|
|
|
|
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Wextra",
|
|
|
|
"-Werror",
|
2019-10-25 02:35:26 +02:00
|
|
|
"-DANDROID_BASE_UNIQUE_FD_DISABLE_IMPLICIT_CONVERSION=1",
|
2017-08-05 01:28:47 +02:00
|
|
|
],
|
|
|
|
shared_libs: [
|
|
|
|
"libbase",
|
2018-12-21 21:30:16 +01:00
|
|
|
"libprocessgroup",
|
2017-08-05 01:28:47 +02:00
|
|
|
],
|
2019-01-17 20:37:22 +01:00
|
|
|
static_libs: ["liblog"],
|
2017-08-05 01:28:47 +02:00
|
|
|
logtags: ["event.logtags"],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_binary {
|
|
|
|
name: "logcat",
|
|
|
|
|
|
|
|
defaults: ["logcat_defaults"],
|
|
|
|
srcs: [
|
2018-06-16 00:16:20 +02:00
|
|
|
"logcat.cpp",
|
2017-08-05 01:28:47 +02:00
|
|
|
],
|
|
|
|
}
|
|
|
|
|
2019-10-30 21:51:03 +01:00
|
|
|
sh_binary {
|
2017-08-05 01:28:47 +02:00
|
|
|
name: "logcatd",
|
2019-10-30 21:51:03 +01:00
|
|
|
src: "logcatd",
|
2017-08-05 01:28:47 +02:00
|
|
|
}
|
|
|
|
|
2019-10-05 05:42:39 +02:00
|
|
|
sh_binary {
|
2017-08-05 01:28:47 +02:00
|
|
|
name: "logpersist.start",
|
2019-10-05 05:42:39 +02:00
|
|
|
src: "logpersist",
|
2017-08-05 01:28:47 +02:00
|
|
|
init_rc: ["logcatd.rc"],
|
2017-11-13 20:56:30 +01:00
|
|
|
required: ["logcatd"],
|
2018-02-17 02:58:14 +01:00
|
|
|
symlinks: [
|
|
|
|
"logpersist.stop",
|
|
|
|
"logpersist.cat",
|
|
|
|
],
|
2017-08-05 01:28:47 +02:00
|
|
|
}
|