blob: 33f3213847f32aa3ea68fee081a0fa8371b5c349 [file] [log] [blame]
Dan Albert2a8d9c22016-09-23 15:55:49 -07001// Copyright (C) 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Colin Crossaa0d4352017-05-02 14:14:56 -070015// ==== c++ proto device library ==============================
16cc_library {
17 name: "libplatformprotos",
18 host_supported: true,
19 // b/34740546, work around clang-tidy segmentation fault.
20 tidy_checks: ["-modernize*"],
21 proto: {
22 export_proto_headers: true,
23 include_dirs: ["external/protobuf/src"],
24 },
25
26 target: {
27 host: {
28 proto: {
29 type: "full",
30 },
John Reck915883b2017-05-03 10:27:20 -070031 srcs: [
32 "core/proto/**/*.proto",
33 "libs/incident/**/*.proto",
34 ],
Colin Crossaa0d4352017-05-02 14:14:56 -070035 },
36 android: {
37 proto: {
38 type: "lite",
39 },
John Reck915883b2017-05-03 10:27:20 -070040 // We only build the protos that are optimized for the lite
41 // runtime, as well as the only protos that are actually
42 // needed by the device.
43 srcs: [
44 "core/proto/android/service/graphicsstats.proto",
45 ],
Colin Crossaa0d4352017-05-02 14:14:56 -070046 shared: {
Colin Crossaa0d4352017-05-02 14:14:56 -070047 enabled: false,
48 },
49 },
50 },
Colin Crossaa0d4352017-05-02 14:14:56 -070051}
52
Dan Albert2a8d9c22016-09-23 15:55:49 -070053subdirs = [
Colin Cross3f8fd402017-04-20 12:20:20 -070054 "core/jni",
Colin Cross4f8d9e62016-12-01 15:55:00 -080055 "libs/*",
Colin Cross76de4f62017-05-15 18:10:40 -070056 "media/*",
Fabien Sanglard19160202017-01-12 14:24:31 -050057 "tools/*",
Dan Albert2a8d9c22016-09-23 15:55:49 -070058 "native/android",
Dan Albert7ce8df32016-09-23 16:43:49 -070059 "native/graphics/jni",
Dan Albert2a8d9c22016-09-23 15:55:49 -070060]
Svetoslav Ganov74c99832016-12-05 20:07:20 -080061
62optional_subdirs = [
63 "core/tests/utiltests/jni",
64]