1// 2// Copyright (C) 2019 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 17package { 18 // See: http://go/android-license-faq 19 // A large-scale-change added 'default_applicable_licenses' to import 20 // all of the 'license_kinds' from "external_nos_host_generic_license" 21 // to get the below license kinds: 22 // SPDX-license-identifier-Apache-2.0 23 default_applicable_licenses: ["external_nos_host_generic_license"], 24} 25 26genrule { 27 name: "nos_app_identity_service_genc++", 28 out: ["Identity.client.cpp"], 29 srcs: [ 30 "identity.proto", 31 "identity_defs.proto", 32 "identity_types.proto", 33 ":nugget_options_proto", 34 ":libprotobuf-internal-protos", 35 ], 36 tools: ["aprotoc", "protoc-gen-nos-client-cpp"], 37 cmd: GEN_SERVICE_SOURCE, 38} 39 40genrule { 41 name: "nos_app_identity_service_genc++_headers", 42 out: ["Identity.client.h"], 43 srcs: [ 44 "identity.proto", 45 "identity_defs.proto", 46 "identity_types.proto", 47 ":nugget_options_proto", 48 ":libprotobuf-internal-protos", 49 ], 50 tools: ["aprotoc", "protoc-gen-nos-client-cpp"], 51 cmd: GEN_SERVICE_HEADER, 52} 53 54genrule { 55 name: "nos_app_identity_service_genc++_mock", 56 out: ["MockIdentity.client.h"], 57 srcs: [ 58 "identity.proto", 59 "identity_defs.proto", 60 "identity_types.proto", 61 ":nugget_options_proto", 62 ":libprotobuf-internal-protos", 63 ], 64 tools: ["aprotoc", "protoc-gen-nos-client-cpp"], 65 cmd: GEN_SERVICE_MOCK, 66} 67 68cc_library { 69 name: "nos_app_identity", 70 generated_sources: ["nos_app_identity_service_genc++"], 71 generated_headers: ["nos_app_identity_service_genc++_headers"], 72 defaults: ["nos_app_service_defaults"], 73 export_generated_headers: ["nos_app_identity_service_genc++_headers"], 74} 75