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 | d8e0225 | 2017-10-02 17:14:22 -0700 | [diff] [blame] | 15 | // Build ext.jar |
| 16 | // ============================================================ |
| 17 | java_library { |
| 18 | name: "ext", |
| 19 | no_framework_libs: true, |
| 20 | static_libs: [ |
| 21 | "libphonenumber-platform", |
| 22 | "nist-sip", |
| 23 | "tagsoup", |
| 24 | ], |
| 25 | dxflags: ["--core-library"], |
| 26 | } |
| 27 | |
Colin Cross | aa0d435 | 2017-05-02 14:14:56 -0700 | [diff] [blame] | 28 | // ==== c++ proto device library ============================== |
| 29 | cc_library { |
| 30 | name: "libplatformprotos", |
| 31 | host_supported: true, |
Colin Cross | aa0d435 | 2017-05-02 14:14:56 -0700 | [diff] [blame] | 32 | proto: { |
| 33 | export_proto_headers: true, |
| 34 | include_dirs: ["external/protobuf/src"], |
| 35 | }, |
| 36 | |
Chih-Hung Hsieh | c7edf07 | 2017-10-03 09:57:55 -0700 | [diff] [blame] | 37 | cflags: [ |
| 38 | "-Wall", |
| 39 | "-Werror", |
| 40 | "-Wno-unused-parameter", |
| 41 | ], |
Colin Cross | aa0d435 | 2017-05-02 14:14:56 -0700 | [diff] [blame] | 42 | target: { |
| 43 | host: { |
| 44 | proto: { |
| 45 | type: "full", |
| 46 | }, |
John Reck | 915883b | 2017-05-03 10:27:20 -0700 | [diff] [blame] | 47 | srcs: [ |
| 48 | "core/proto/**/*.proto", |
| 49 | "libs/incident/**/*.proto", |
| 50 | ], |
Colin Cross | aa0d435 | 2017-05-02 14:14:56 -0700 | [diff] [blame] | 51 | }, |
| 52 | android: { |
| 53 | proto: { |
| 54 | type: "lite", |
| 55 | }, |
John Reck | 915883b | 2017-05-03 10:27:20 -0700 | [diff] [blame] | 56 | // We only build the protos that are optimized for the lite |
| 57 | // runtime, as well as the only protos that are actually |
| 58 | // needed by the device. |
| 59 | srcs: [ |
Yi Jin | 0a3406f | 2017-06-22 19:23:11 -0700 | [diff] [blame] | 60 | "core/proto/android/os/kernelwake.proto", |
Yi Jin | 810b14f | 2017-09-11 19:01:08 -0700 | [diff] [blame] | 61 | "core/proto/android/os/pagetypeinfo.proto", |
Yi Jin | b44f7d4 | 2017-07-21 12:12:59 -0700 | [diff] [blame] | 62 | "core/proto/android/os/procrank.proto", |
John Reck | 915883b | 2017-05-03 10:27:20 -0700 | [diff] [blame] | 63 | "core/proto/android/service/graphicsstats.proto", |
Yi Jin | 7e0b4e5 | 2017-09-12 20:00:25 -0700 | [diff] [blame] | 64 | "libs/incident/proto/android/privacy.proto", |
John Reck | 915883b | 2017-05-03 10:27:20 -0700 | [diff] [blame] | 65 | ], |
Colin Cross | aa0d435 | 2017-05-02 14:14:56 -0700 | [diff] [blame] | 66 | shared: { |
Colin Cross | aa0d435 | 2017-05-02 14:14:56 -0700 | [diff] [blame] | 67 | enabled: false, |
| 68 | }, |
| 69 | }, |
| 70 | }, |
Colin Cross | aa0d435 | 2017-05-02 14:14:56 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Dan Albert | 2a8d9c2 | 2016-09-23 15:55:49 -0700 | [diff] [blame] | 73 | subdirs = [ |
Yi Jin | 0a3406f | 2017-06-22 19:23:11 -0700 | [diff] [blame] | 74 | "cmds/*", |
Jeff Sharkey | 0c686e7 | 2017-10-23 16:04:31 -0600 | [diff] [blame] | 75 | "core/*", |
Colin Cross | 4f8d9e6 | 2016-12-01 15:55:00 -0800 | [diff] [blame] | 76 | "libs/*", |
Colin Cross | 76de4f6 | 2017-05-15 18:10:40 -0700 | [diff] [blame] | 77 | "media/*", |
Colin Cross | 747e7c1 | 2017-10-24 16:21:22 -0700 | [diff] [blame] | 78 | "proto", |
Fabien Sanglard | 1916020 | 2017-01-12 14:24:31 -0500 | [diff] [blame] | 79 | "tools/*", |
Dan Albert | 2a8d9c2 | 2016-09-23 15:55:49 -0700 | [diff] [blame] | 80 | "native/android", |
Dan Albert | 7ce8df3 | 2016-09-23 16:43:49 -0700 | [diff] [blame] | 81 | "native/graphics/jni", |
Dan Albert | 2a8d9c2 | 2016-09-23 15:55:49 -0700 | [diff] [blame] | 82 | ] |
Svetoslav Ganov | 74c9983 | 2016-12-05 20:07:20 -0800 | [diff] [blame] | 83 | |
| 84 | optional_subdirs = [ |
| 85 | "core/tests/utiltests/jni", |
| 86 | ] |
Steven Moreland | eddafe9 | 2017-10-02 16:58:41 -0700 | [diff] [blame] | 87 | |
| 88 | java_library { |
| 89 | name: "hwbinder", |
| 90 | no_framework_libs: true, |
| 91 | |
| 92 | srcs: [ |
| 93 | "core/java/android/os/HidlSupport.java", |
| 94 | "core/java/android/annotation/NonNull.java", |
| 95 | "core/java/android/os/HwBinder.java", |
| 96 | "core/java/android/os/HwBlob.java", |
| 97 | "core/java/android/os/HwParcel.java", |
| 98 | "core/java/android/os/IHwBinder.java", |
| 99 | "core/java/android/os/IHwInterface.java", |
| 100 | "core/java/android/os/DeadObjectException.java", |
| 101 | "core/java/android/os/DeadSystemException.java", |
| 102 | "core/java/android/os/RemoteException.java", |
| 103 | "core/java/android/util/AndroidException.java", |
| 104 | ], |
| 105 | |
| 106 | dxflags: ["--core-library"], |
| 107 | installable: false, |
| 108 | } |