Dan Albert | 2a8d9c2 | 2016-09-23 15:55:49 -0700 | [diff] [blame] | 1 | // 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 Cross | aa0d435 | 2017-05-02 14:14:56 -0700 | [diff] [blame] | 15 | // ==== c++ proto device library ============================== |
| 16 | cc_library { |
| 17 | name: "libplatformprotos", |
| 18 | host_supported: true, |
Colin Cross | aa0d435 | 2017-05-02 14:14:56 -0700 | [diff] [blame] | 19 | proto: { |
| 20 | export_proto_headers: true, |
| 21 | include_dirs: ["external/protobuf/src"], |
| 22 | }, |
| 23 | |
| 24 | target: { |
| 25 | host: { |
| 26 | proto: { |
| 27 | type: "full", |
| 28 | }, |
John Reck | 915883b | 2017-05-03 10:27:20 -0700 | [diff] [blame] | 29 | srcs: [ |
| 30 | "core/proto/**/*.proto", |
| 31 | "libs/incident/**/*.proto", |
| 32 | ], |
Colin Cross | aa0d435 | 2017-05-02 14:14:56 -0700 | [diff] [blame] | 33 | }, |
| 34 | android: { |
| 35 | proto: { |
| 36 | type: "lite", |
| 37 | }, |
John Reck | 915883b | 2017-05-03 10:27:20 -0700 | [diff] [blame] | 38 | // We only build the protos that are optimized for the lite |
| 39 | // runtime, as well as the only protos that are actually |
| 40 | // needed by the device. |
| 41 | srcs: [ |
| 42 | "core/proto/android/service/graphicsstats.proto", |
| 43 | ], |
Colin Cross | aa0d435 | 2017-05-02 14:14:56 -0700 | [diff] [blame] | 44 | shared: { |
Colin Cross | aa0d435 | 2017-05-02 14:14:56 -0700 | [diff] [blame] | 45 | enabled: false, |
| 46 | }, |
| 47 | }, |
| 48 | }, |
Colin Cross | aa0d435 | 2017-05-02 14:14:56 -0700 | [diff] [blame] | 49 | } |
| 50 | |
Dan Albert | 2a8d9c2 | 2016-09-23 15:55:49 -0700 | [diff] [blame] | 51 | subdirs = [ |
Colin Cross | 3f8fd40 | 2017-04-20 12:20:20 -0700 | [diff] [blame] | 52 | "core/jni", |
Colin Cross | 4f8d9e6 | 2016-12-01 15:55:00 -0800 | [diff] [blame] | 53 | "libs/*", |
Colin Cross | 76de4f6 | 2017-05-15 18:10:40 -0700 | [diff] [blame] | 54 | "media/*", |
Fabien Sanglard | 1916020 | 2017-01-12 14:24:31 -0500 | [diff] [blame] | 55 | "tools/*", |
Dan Albert | 2a8d9c2 | 2016-09-23 15:55:49 -0700 | [diff] [blame] | 56 | "native/android", |
Dan Albert | 7ce8df3 | 2016-09-23 16:43:49 -0700 | [diff] [blame] | 57 | "native/graphics/jni", |
Dan Albert | 2a8d9c2 | 2016-09-23 15:55:49 -0700 | [diff] [blame] | 58 | ] |
Svetoslav Ganov | 74c9983 | 2016-12-05 20:07:20 -0800 | [diff] [blame] | 59 | |
| 60 | optional_subdirs = [ |
| 61 | "core/tests/utiltests/jni", |
| 62 | ] |