mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-19 08:37:54 +01:00

In https://webrtc-review.googlesource.com/c/src/+/1560 we moved WebRTC from src/webrtc to src/ (in order to preserve an healthy git history). This CL takes care of fixing header guards, #include paths, etc... NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=tommi@webrtc.org Bug: chromium:611808 Change-Id: Iea91618212bee0af16aa3f05071eab8f93706578 Reviewed-on: https://webrtc-review.googlesource.com/1561 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19846}
57 lines
2.9 KiB
Text
57 lines
2.9 KiB
Text
# Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
import("//build_overrides/build.gni")
|
|
|
|
valgrind_dependencies = [
|
|
"../tools/valgrind/asan/asan_symbolize.py",
|
|
"../tools/valgrind/asan/third_party/__init__.py",
|
|
"../tools/valgrind/asan/third_party/asan_symbolize.py",
|
|
"../tools/valgrind/browser_wrapper_win.py",
|
|
"../tools/valgrind/fixed_suppressions.sh",
|
|
"../tools/valgrind/memcheck/suppressions.txt",
|
|
"../tools/valgrind/memcheck/suppressions_linux.txt",
|
|
"../tools/valgrind/regrind.sh",
|
|
"../tools/valgrind/scan-build.py",
|
|
"../tools/valgrind/suppressions.py",
|
|
"../tools/valgrind/test_suppressions.py",
|
|
"../tools/valgrind/unused_suppressions.py",
|
|
"../tools/valgrind/waterfall.sh",
|
|
]
|
|
|
|
if (build_with_chromium) {
|
|
valgrind_dependencies += [
|
|
"../tools/valgrind/gtest_exclude/ash_unittests.gtest-memcheck.txt",
|
|
"../tools/valgrind/gtest_exclude/aura_unittests.gtest.txt",
|
|
"../tools/valgrind/gtest_exclude/base_unittests.gtest.txt",
|
|
"../tools/valgrind/gtest_exclude/base_unittests.gtest_win-8.txt",
|
|
"../tools/valgrind/gtest_exclude/base_unittests.gtest_win32.txt",
|
|
"../tools/valgrind/gtest_exclude/blink_platform_unittests.gtest_win32.txt",
|
|
"../tools/valgrind/gtest_exclude/browser_tests.gtest-memcheck.txt",
|
|
"../tools/valgrind/gtest_exclude/chromeos_unittests.gtest.txt",
|
|
"../tools/valgrind/gtest_exclude/components_unittests.gtest.txt",
|
|
"../tools/valgrind/gtest_exclude/content_unittests.gtest.txt",
|
|
"../tools/valgrind/gtest_exclude/extensions_unittests.gtest-memcheck.txt",
|
|
"../tools/valgrind/gtest_exclude/interactive_ui_tests.gtest.txt",
|
|
"../tools/valgrind/gtest_exclude/ipc_tests.gtest.txt",
|
|
"../tools/valgrind/gtest_exclude/media_unittests.gtest.txt",
|
|
"../tools/valgrind/gtest_exclude/message_center_unittests.gtest.txt",
|
|
"../tools/valgrind/gtest_exclude/net_unittests.gtest-memcheck.txt",
|
|
"../tools/valgrind/gtest_exclude/net_unittests.gtest.txt",
|
|
"../tools/valgrind/gtest_exclude/net_unittests.gtest_linux.txt",
|
|
"../tools/valgrind/gtest_exclude/remoting_unittests.gtest_win-8.txt",
|
|
"../tools/valgrind/gtest_exclude/sandbox_linux_unittests.gtest.txt",
|
|
"../tools/valgrind/gtest_exclude/suppressions.txt",
|
|
"../tools/valgrind/gtest_exclude/sync_unit_tests.gtest-asan.txt",
|
|
"../tools/valgrind/gtest_exclude/ui_base_unittests.gtest-memcheck.txt",
|
|
"../tools/valgrind/gtest_exclude/ui_unittests.gtest-memcheck_linux.txt",
|
|
"../tools/valgrind/gtest_exclude/unit_tests.gtest-memcheck.txt",
|
|
"../tools/valgrind/gtest_exclude/unit_tests.gtest.txt",
|
|
"../tools/valgrind/gtest_exclude/unit_tests.gtest_linux.txt",
|
|
]
|
|
}
|