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

Unified Diff: gyp/expat.gyp

Issue 1674053002: msan: build expat from source (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fixed? Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | gyp/ports.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/expat.gyp
diff --git a/gyp/expat.gyp b/gyp/expat.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..9e18383db35ae6eaec71cd89227b1e5f4ab5081d
--- /dev/null
+++ b/gyp/expat.gyp
@@ -0,0 +1,25 @@
+# Copyright 2016 Google Inc.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# Build expat from source.
+# Used on Linux bots for testing the Android FontMgr xml parsing.
+# This is mostly important for the MSAN bot's instrumentation.
+
+{
+ 'targets': [{
+ 'target_name': 'expat',
+ 'type': 'static_library',
+ 'cflags': [ '-w' ],
+ 'defines': [ 'HAVE_MEMMOVE' ],
+ 'sources': [
+ '../third_party/externals/expat/lib/xmlparse.c',
+ '../third_party/externals/expat/lib/xmlrole.c',
+ '../third_party/externals/expat/lib/xmltok.c',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [ '../third_party/externals/expat/lib' ],
+ },
+ }]
+}
« no previous file with comments | « DEPS ('k') | gyp/ports.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698