mirror of
https://github.com/shaka-project/shaka-packager.git
synced 2026-04-12 00:00:59 +00:00
- Generate local copies of libevent, libxml and protobuf. Change-Id: Ibb29f604191519267f0e6a3ee810cad0c1f80b27
16 lines
361 B
C++
16 lines
361 B
C++
// Copyright 2014 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
extern "C" void __gcov_flush();
|
|
|
|
namespace coverage_util {
|
|
|
|
void FlushCoverageDataIfNecessary() {
|
|
#if defined(ENABLE_TEST_CODE_COVERAGE)
|
|
__gcov_flush();
|
|
#endif
|
|
}
|
|
|
|
} // namespace coverage_util
|