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

Side by Side Diff: third_party/instrumented_libraries/scripts/pre-build/libgtk-3-0.sh

Issue 2737783003: Add GTK3 and dependent instrumented libraries (Closed)
Patch Set: Created 3 years, 9 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 | « third_party/instrumented_libraries/patches/nss.diff ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2 # Copyright 2016 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 # This script does some preparations before build of instrumented libgtk-3-0.
7
8 # Use the system-installed gtk-update-icon-cache during building. Normally a
9 # just-built one is used, however in MSan builds it will crash due to
10 # uninstrumented dependencies.
11
12 sed -i "s|./gtk-update-icon-cache|/usr/bin/gtk-update-icon-cache|g" gtk/Makefile .am
13
14 # Don't build immodules.cache. It requires running just-built executables that
15 # depend on glib, but using the system glib will cause msan errors. This file
16 # is only used in GTK test suites, and is unneeded for the instrumented build.
17
18 sed -i "s|all-local: immodules.cache||g" modules/input/Makefile.am
19
20 autoreconf
OLDNEW
« no previous file with comments | « third_party/instrumented_libraries/patches/nss.diff ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698