Dan Willemsen | c7dd2b9 | 2016-08-25 17:05:22 -0700 | [diff] [blame] | 1 | // Copyright (C) 2010 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 | |
| 15 | cc_library_shared { |
| 16 | name: "libui", |
| 17 | |
| 18 | clang: true, |
| 19 | cppflags: [ |
Dan Willemsen | c7dd2b9 | 2016-08-25 17:05:22 -0700 | [diff] [blame] | 20 | "-Weverything", |
| 21 | "-Werror", |
| 22 | |
| 23 | // The static constructors and destructors in this library have not been noted to |
| 24 | // introduce significant overheads |
| 25 | "-Wno-exit-time-destructors", |
| 26 | "-Wno-global-constructors", |
| 27 | |
| 28 | // We only care about compiling as C++14 |
| 29 | "-Wno-c++98-compat-pedantic", |
| 30 | |
Dan Stoza | 71bded5 | 2016-10-19 11:10:33 -0700 | [diff] [blame] | 31 | // We are aware of the risks inherent in comparing floats for equality |
| 32 | "-Wno-float-equal", |
| 33 | |
Dan Willemsen | c7dd2b9 | 2016-08-25 17:05:22 -0700 | [diff] [blame] | 34 | // We use four-character constants for the GraphicBuffer header, and don't care |
| 35 | // that they're non-portable as long as they're consistent within one execution |
| 36 | "-Wno-four-char-constants", |
| 37 | |
| 38 | // Don't warn about struct padding |
| 39 | "-Wno-padded", |
| 40 | ], |
| 41 | |
| 42 | sanitize: { |
| 43 | //misc_undefined: ["integer"], |
| 44 | }, |
| 45 | |
| 46 | srcs: [ |
Romain Guy | caf2ca4 | 2016-11-10 11:45:58 -0800 | [diff] [blame] | 47 | "ColorSpace.cpp", |
Courtney Goeltzenleuchter | e06ad18 | 2017-03-22 13:09:12 -0600 | [diff] [blame] | 48 | "DebugUtils.cpp", |
Dan Willemsen | c7dd2b9 | 2016-08-25 17:05:22 -0700 | [diff] [blame] | 49 | "Fence.cpp", |
Brian Anderson | 221de2a | 2016-09-21 16:53:28 -0700 | [diff] [blame] | 50 | "FenceTime.cpp", |
Dan Willemsen | c7dd2b9 | 2016-08-25 17:05:22 -0700 | [diff] [blame] | 51 | "FrameStats.cpp", |
| 52 | "Gralloc1.cpp", |
| 53 | "Gralloc1On0Adapter.cpp", |
Chia-I Wu | 5bac7f3 | 2017-04-06 12:34:32 -0700 | [diff] [blame^] | 54 | "Gralloc2.cpp", |
Dan Willemsen | c7dd2b9 | 2016-08-25 17:05:22 -0700 | [diff] [blame] | 55 | "GraphicBuffer.cpp", |
| 56 | "GraphicBufferAllocator.cpp", |
| 57 | "GraphicBufferMapper.cpp", |
Mathias Agopian | 991d254 | 2017-02-06 13:51:32 -0800 | [diff] [blame] | 58 | "GraphicsEnv.cpp", |
Dan Willemsen | c7dd2b9 | 2016-08-25 17:05:22 -0700 | [diff] [blame] | 59 | "HdrCapabilities.cpp", |
| 60 | "PixelFormat.cpp", |
| 61 | "Rect.cpp", |
| 62 | "Region.cpp", |
| 63 | "UiConfig.cpp", |
| 64 | ], |
| 65 | |
| 66 | shared_libs: [ |
Chia-I Wu | 9ba189d | 2016-09-22 17:13:08 +0800 | [diff] [blame] | 67 | "android.hardware.graphics.allocator@2.0", |
Chia-I Wu | 3166947 | 2016-12-07 14:55:24 +0800 | [diff] [blame] | 68 | "android.hardware.graphics.mapper@2.0", |
Courtney Goeltzenleuchter | 5d94389 | 2017-03-22 13:46:46 -0600 | [diff] [blame] | 69 | "android.hardware.configstore@1.0", |
Courtney Goeltzenleuchter | 381019d | 2017-04-05 15:51:24 -0600 | [diff] [blame] | 70 | "android.hardware.configstore-utils", |
Courtney Goeltzenleuchter | e06ad18 | 2017-03-22 13:09:12 -0600 | [diff] [blame] | 71 | "libbase", |
Mathias Agopian | 991d254 | 2017-02-06 13:51:32 -0800 | [diff] [blame] | 72 | "libnativeloader", |
Dan Willemsen | c7dd2b9 | 2016-08-25 17:05:22 -0700 | [diff] [blame] | 73 | "libcutils", |
| 74 | "libhardware", |
Yifan Hong | 67a4762 | 2016-11-17 13:02:06 -0800 | [diff] [blame] | 75 | "libhidlbase", |
| 76 | "libhidltransport", |
Dan Willemsen | c7dd2b9 | 2016-08-25 17:05:22 -0700 | [diff] [blame] | 77 | "libsync", |
| 78 | "libutils", |
| 79 | "liblog", |
| 80 | ], |
Mathias Agopian | a934764 | 2017-02-13 16:42:28 -0800 | [diff] [blame] | 81 | |
| 82 | static_libs: [ |
| 83 | "libarect", |
Jesse Hall | 7992781 | 2017-03-23 11:03:23 -0700 | [diff] [blame] | 84 | "libgrallocusage", |
Mathias Agopian | 1d77b71 | 2017-02-17 15:46:13 -0800 | [diff] [blame] | 85 | "libmath", |
Mathias Agopian | a934764 | 2017-02-13 16:42:28 -0800 | [diff] [blame] | 86 | ], |
| 87 | |
Mathias Agopian | 1d77b71 | 2017-02-17 15:46:13 -0800 | [diff] [blame] | 88 | export_static_lib_headers: [ |
| 89 | "libarect", |
| 90 | "libmath", |
| 91 | ], |
Dan Willemsen | c7dd2b9 | 2016-08-25 17:05:22 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | subdirs = ["tests"] |