S Vasudev Prasad | 057f2f5 | 2020-04-09 15:41:38 +0530 | [diff] [blame^] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Copyright (C) 2020 The Android Open Source Project |
| 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | * |
| 17 | ***************************************************************************** |
| 18 | * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore |
| 19 | */ |
| 20 | |
| 21 | cc_library { |
| 22 | name: "libextractorfuzzerbase", |
| 23 | |
| 24 | srcs: [ |
| 25 | "ExtractorFuzzerBase.cpp", |
| 26 | ], |
| 27 | |
| 28 | local_include_dirs: [ |
| 29 | "include", |
| 30 | ], |
| 31 | |
| 32 | export_include_dirs: [ |
| 33 | "include", |
| 34 | ], |
| 35 | |
| 36 | static_libs: [ |
| 37 | "liblog", |
| 38 | "libstagefright_foundation", |
| 39 | "libmedia", |
| 40 | ], |
| 41 | |
| 42 | shared_libs: [ |
| 43 | "libutils", |
| 44 | "libbinder", |
| 45 | "libmediandk", |
| 46 | ], |
| 47 | |
| 48 | /* GETEXTRACTORDEF is not defined as extractor library is not linked in the |
| 49 | * base class. It will be included when the extractor fuzzer binary is |
| 50 | * generated. |
| 51 | */ |
| 52 | allow_undefined_symbols: true, |
| 53 | } |