OLD | NEW |
| (Empty) |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | |
2 # | |
3 # Use of this source code is governed by a BSD-style license | |
4 # that can be found in the LICENSE file in the root of the source | |
5 # tree. An additional intellectual property rights grant can be found | |
6 # in the file PATENTS. All contributing project authors may | |
7 # be found in the AUTHORS file in the root of the source tree. | |
8 | |
9 import("//build_overrides/build.gni") | |
10 | |
11 valgrind_dependencies = [ | |
12 "../../tools/valgrind/asan/asan_symbolize.py", | |
13 "../../tools/valgrind/asan/third_party/__init__.py", | |
14 "../../tools/valgrind/asan/third_party/asan_symbolize.py", | |
15 "../../tools/valgrind/browser_wrapper_win.py", | |
16 "../../tools/valgrind/chrome_tests.bat", | |
17 "../../tools/valgrind/chrome_tests.py", | |
18 "../../tools/valgrind/chrome_tests.sh", | |
19 "../../tools/valgrind/common.py", | |
20 "../../tools/valgrind/drmemory.bat", | |
21 "../../tools/valgrind/drmemory_analyze.py", | |
22 "../../tools/valgrind/fixed_suppressions.sh", | |
23 "../../tools/valgrind/gdb_helper.py", | |
24 "../../tools/valgrind/locate_valgrind.sh", | |
25 "../../tools/valgrind/memcheck/suppressions.txt", | |
26 "../../tools/valgrind/memcheck/suppressions_linux.txt", | |
27 "../../tools/valgrind/memcheck_analyze.py", | |
28 "../../tools/valgrind/regrind.sh", | |
29 "../../tools/valgrind/scan-build.py", | |
30 "../../tools/valgrind/suppressions.py", | |
31 "../../tools/valgrind/test_suppressions.py", | |
32 "../../tools/valgrind/unused_suppressions.py", | |
33 "../../tools/valgrind/valgrind.sh", | |
34 "../../tools/valgrind/valgrind_test.py", | |
35 "../../tools/valgrind/waterfall.sh", | |
36 ] | |
37 | |
38 if (build_with_chromium) { | |
39 valgrind_dependencies += [ | |
40 "../../tools/valgrind/gtest_exclude/ash_unittests.gtest-memcheck.txt", | |
41 "../../tools/valgrind/gtest_exclude/aura_unittests.gtest.txt", | |
42 "../../tools/valgrind/gtest_exclude/base_unittests.gtest.txt", | |
43 "../../tools/valgrind/gtest_exclude/base_unittests.gtest_win-8.txt", | |
44 "../../tools/valgrind/gtest_exclude/base_unittests.gtest_win32.txt", | |
45 "../../tools/valgrind/gtest_exclude/blink_platform_unittests.gtest_win32.txt
", | |
46 "../../tools/valgrind/gtest_exclude/browser_tests.gtest-memcheck.txt", | |
47 "../../tools/valgrind/gtest_exclude/chromeos_unittests.gtest.txt", | |
48 "../../tools/valgrind/gtest_exclude/components_unittests.gtest.txt", | |
49 "../../tools/valgrind/gtest_exclude/content_unittests.gtest.txt", | |
50 "../../tools/valgrind/gtest_exclude/extensions_unittests.gtest-memcheck.txt"
, | |
51 "../../tools/valgrind/gtest_exclude/interactive_ui_tests.gtest.txt", | |
52 "../../tools/valgrind/gtest_exclude/ipc_tests.gtest.txt", | |
53 "../../tools/valgrind/gtest_exclude/media_unittests.gtest.txt", | |
54 "../../tools/valgrind/gtest_exclude/message_center_unittests.gtest.txt", | |
55 "../../tools/valgrind/gtest_exclude/net_unittests.gtest-memcheck.txt", | |
56 "../../tools/valgrind/gtest_exclude/net_unittests.gtest.txt", | |
57 "../../tools/valgrind/gtest_exclude/net_unittests.gtest_linux.txt", | |
58 "../../tools/valgrind/gtest_exclude/remoting_unittests.gtest_win-8.txt", | |
59 "../../tools/valgrind/gtest_exclude/sandbox_linux_unittests.gtest.txt", | |
60 "../../tools/valgrind/gtest_exclude/suppressions.txt", | |
61 "../../tools/valgrind/gtest_exclude/sync_unit_tests.gtest-asan.txt", | |
62 "../../tools/valgrind/gtest_exclude/ui_base_unittests.gtest-memcheck.txt", | |
63 "../../tools/valgrind/gtest_exclude/ui_unittests.gtest-memcheck_linux.txt", | |
64 "../../tools/valgrind/gtest_exclude/unit_tests.gtest-memcheck.txt", | |
65 "../../tools/valgrind/gtest_exclude/unit_tests.gtest.txt", | |
66 "../../tools/valgrind/gtest_exclude/unit_tests.gtest_linux.txt", | |
67 ] | |
68 } | |
OLD | NEW |