Alex Light | fbf9670 | 2017-12-14 13:27:13 -0800 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2017 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 | |
| 17 | // Build variants {target,host} x {debug,ndebug} x {32,64} |
| 18 | |
| 19 | cc_defaults { |
| 20 | name: "adbconnection-defaults", |
| 21 | host_supported: true, |
| 22 | srcs: ["adbconnection.cc"], |
| 23 | defaults: ["art_defaults"], |
| 24 | |
| 25 | // Note that this tool needs to be built for both 32-bit and 64-bit since it requires |
| 26 | // to be same ISA as what it is attached to. |
| 27 | compile_multilib: "both", |
| 28 | |
| 29 | shared_libs: [ |
| 30 | "libbase", |
| 31 | ], |
| 32 | target: { |
Alex Light | fbf9670 | 2017-12-14 13:27:13 -0800 | [diff] [blame] | 33 | host: { |
| 34 | }, |
Alex Light | c7547c3 | 2017-12-20 08:05:06 -0800 | [diff] [blame] | 35 | darwin: { |
| 36 | enabled: false, |
| 37 | }, |
Alex Light | fbf9670 | 2017-12-14 13:27:13 -0800 | [diff] [blame] | 38 | }, |
| 39 | header_libs: [ |
| 40 | "libnativehelper_header_only", |
| 41 | "dt_fd_forward_export", |
| 42 | ], |
Alex Light | fbf9670 | 2017-12-14 13:27:13 -0800 | [diff] [blame] | 43 | required: [ |
| 44 | "libjdwp", |
| 45 | "libdt_fd_forward", |
| 46 | ], |
| 47 | } |
| 48 | |
| 49 | art_cc_library { |
| 50 | name: "libadbconnection", |
| 51 | defaults: ["adbconnection-defaults"], |
| 52 | shared_libs: [ |
| 53 | "libart", |
David Sehr | 1f01016 | 2018-05-15 08:59:32 -0700 | [diff] [blame] | 54 | "libartbase", |
Alex Light | fbf9670 | 2017-12-14 13:27:13 -0800 | [diff] [blame] | 55 | ], |
| 56 | } |
| 57 | |
Josh Gao | 77e6187 | 2019-10-17 12:24:34 -0700 | [diff] [blame] | 58 | // We export a library to do the server-side socket handling that gets loaded |
| 59 | // by adbd from the art apex, so that we can update the socket handling |
| 60 | // independently from the adbd apex. |
Josh Gao | 00b831e | 2019-06-19 13:41:57 -0700 | [diff] [blame] | 61 | cc_library { |
| 62 | name: "libadbconnection_server", |
| 63 | srcs: ["adbconnection_server.cc"], |
Josh Gao | 77e6187 | 2019-10-17 12:24:34 -0700 | [diff] [blame] | 64 | |
Josh Gao | 00b831e | 2019-06-19 13:41:57 -0700 | [diff] [blame] | 65 | export_include_dirs: ["include"], |
Josh Gao | 0d7232c | 2019-10-25 14:55:13 -0700 | [diff] [blame] | 66 | |
| 67 | stl: "libc++_static", |
| 68 | shared_libs: ["liblog"], |
| 69 | whole_static_libs: ["libbase"], |
Josh Gao | 77e6187 | 2019-10-17 12:24:34 -0700 | [diff] [blame] | 70 | |
| 71 | defaults: ["art_defaults"], |
| 72 | visibility: [ |
| 73 | "//system/core/adb", |
| 74 | ], |
| 75 | stubs: { |
| 76 | symbol_file: "libadbconnection_server.map.txt", |
| 77 | versions: ["1"], |
| 78 | }, |
| 79 | |
Josh Gao | 00b831e | 2019-06-19 13:41:57 -0700 | [diff] [blame] | 80 | host_supported: true, |
| 81 | recovery_available: true, |
| 82 | } |
| 83 | |
Alex Light | fbf9670 | 2017-12-14 13:27:13 -0800 | [diff] [blame] | 84 | art_cc_library { |
| 85 | name: "libadbconnectiond", |
| 86 | defaults: [ |
| 87 | "art_debug_defaults", |
| 88 | "adbconnection-defaults", |
| 89 | ], |
| 90 | shared_libs: [ |
| 91 | "libartd", |
David Sehr | 1f01016 | 2018-05-15 08:59:32 -0700 | [diff] [blame] | 92 | "libartbased", |
Alex Light | fbf9670 | 2017-12-14 13:27:13 -0800 | [diff] [blame] | 93 | ], |
| 94 | } |