1 // This directory was created manually and not imported from Chromium. It was created to remove the 2 // divergence we had where we had to rename `#include "third_party/zlib/zlib.h"` line to 3 // `#include <zlib.h>`. This is due to the fact that we don't import Chromium's zlib and we use 4 // zlib from AOSP. In order to workaround that, we redirect traffic from `third_party/zlib/zlib.h` to 5 // AOSP's zlib. 6 7 #ifndef THIRD_PARTY_ZLIB_ZLIB 8 #define THIRD_PARTY_ZLIB_ZLIB 9 10 #include <zlib.h> 11 12 #endif // THIRD_PARTY_ZLIB_ZLIB