Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: tools_webrtc/valgrind/valgrind.gni

Issue 2945753002: Roll chromium_revision b032878ebd..e438353b8b (480186:480311) (Closed)
Patch Set: Updated .gni Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools_webrtc/valgrind/memcheck_analyze.py ('k') | tools_webrtc/valgrind/valgrind.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 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 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 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("//build_overrides/build.gni") 9 import("//build_overrides/build.gni")
10 10
11 valgrind_dependencies = [ 11 valgrind_dependencies = [
12 "../../tools/valgrind/asan/asan_symbolize.py", 12 "../../tools/valgrind/asan/asan_symbolize.py",
13 "../../tools/valgrind/asan/third_party/__init__.py", 13 "../../tools/valgrind/asan/third_party/__init__.py",
14 "../../tools/valgrind/asan/third_party/asan_symbolize.py", 14 "../../tools/valgrind/asan/third_party/asan_symbolize.py",
15 "../../tools/valgrind/browser_wrapper_win.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", 16 "../../tools/valgrind/fixed_suppressions.sh",
23 "../../tools/valgrind/gdb_helper.py",
24 "../../tools/valgrind/locate_valgrind.sh",
25 "../../tools/valgrind/memcheck/suppressions.txt", 17 "../../tools/valgrind/memcheck/suppressions.txt",
26 "../../tools/valgrind/memcheck/suppressions_linux.txt", 18 "../../tools/valgrind/memcheck/suppressions_linux.txt",
27 "../../tools/valgrind/memcheck_analyze.py",
28 "../../tools/valgrind/regrind.sh", 19 "../../tools/valgrind/regrind.sh",
29 "../../tools/valgrind/scan-build.py", 20 "../../tools/valgrind/scan-build.py",
30 "../../tools/valgrind/suppressions.py", 21 "../../tools/valgrind/suppressions.py",
31 "../../tools/valgrind/test_suppressions.py", 22 "../../tools/valgrind/test_suppressions.py",
32 "../../tools/valgrind/unused_suppressions.py", 23 "../../tools/valgrind/unused_suppressions.py",
33 "../../tools/valgrind/valgrind.sh",
34 "../../tools/valgrind/valgrind_test.py",
35 "../../tools/valgrind/waterfall.sh", 24 "../../tools/valgrind/waterfall.sh",
36 ] 25 ]
37 26
38 if (build_with_chromium) { 27 if (build_with_chromium) {
39 valgrind_dependencies += [ 28 valgrind_dependencies += [
40 "../../tools/valgrind/gtest_exclude/ash_unittests.gtest-memcheck.txt", 29 "../../tools/valgrind/gtest_exclude/ash_unittests.gtest-memcheck.txt",
41 "../../tools/valgrind/gtest_exclude/aura_unittests.gtest.txt", 30 "../../tools/valgrind/gtest_exclude/aura_unittests.gtest.txt",
42 "../../tools/valgrind/gtest_exclude/base_unittests.gtest.txt", 31 "../../tools/valgrind/gtest_exclude/base_unittests.gtest.txt",
43 "../../tools/valgrind/gtest_exclude/base_unittests.gtest_win-8.txt", 32 "../../tools/valgrind/gtest_exclude/base_unittests.gtest_win-8.txt",
44 "../../tools/valgrind/gtest_exclude/base_unittests.gtest_win32.txt", 33 "../../tools/valgrind/gtest_exclude/base_unittests.gtest_win32.txt",
(...skipping 14 matching lines...) Expand all
59 "../../tools/valgrind/gtest_exclude/sandbox_linux_unittests.gtest.txt", 48 "../../tools/valgrind/gtest_exclude/sandbox_linux_unittests.gtest.txt",
60 "../../tools/valgrind/gtest_exclude/suppressions.txt", 49 "../../tools/valgrind/gtest_exclude/suppressions.txt",
61 "../../tools/valgrind/gtest_exclude/sync_unit_tests.gtest-asan.txt", 50 "../../tools/valgrind/gtest_exclude/sync_unit_tests.gtest-asan.txt",
62 "../../tools/valgrind/gtest_exclude/ui_base_unittests.gtest-memcheck.txt", 51 "../../tools/valgrind/gtest_exclude/ui_base_unittests.gtest-memcheck.txt",
63 "../../tools/valgrind/gtest_exclude/ui_unittests.gtest-memcheck_linux.txt", 52 "../../tools/valgrind/gtest_exclude/ui_unittests.gtest-memcheck_linux.txt",
64 "../../tools/valgrind/gtest_exclude/unit_tests.gtest-memcheck.txt", 53 "../../tools/valgrind/gtest_exclude/unit_tests.gtest-memcheck.txt",
65 "../../tools/valgrind/gtest_exclude/unit_tests.gtest.txt", 54 "../../tools/valgrind/gtest_exclude/unit_tests.gtest.txt",
66 "../../tools/valgrind/gtest_exclude/unit_tests.gtest_linux.txt", 55 "../../tools/valgrind/gtest_exclude/unit_tests.gtest_linux.txt",
67 ] 56 ]
68 } 57 }
OLDNEW
« no previous file with comments | « tools_webrtc/valgrind/memcheck_analyze.py ('k') | tools_webrtc/valgrind/valgrind.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698