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

Side by Side Diff: third_party/libxml/libxml.gyp

Issue 10128002: Retrieve Windows performance assessment information from results files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments and braces. Created 8 years, 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 # Define an "os_include" variable that points at the OS-specific generated 8 # Define an "os_include" variable that points at the OS-specific generated
9 # headers. These were generated by running the configure script offline. 9 # headers. These were generated by running the configure script offline.
10 ['os_posix == 1 and OS != "mac"', { 10 ['os_posix == 1 and OS != "mac"', {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 'src/include/libxml/chvalid.h', 49 'src/include/libxml/chvalid.h',
50 'src/include/libxml/debugXML.h', 50 'src/include/libxml/debugXML.h',
51 'src/include/libxml/dict.h', 51 'src/include/libxml/dict.h',
52 'src/include/libxml/DOCBparser.h', 52 'src/include/libxml/DOCBparser.h',
53 'src/include/libxml/encoding.h', 53 'src/include/libxml/encoding.h',
54 'src/include/libxml/entities.h', 54 'src/include/libxml/entities.h',
55 'src/include/libxml/globals.h', 55 'src/include/libxml/globals.h',
56 'src/include/libxml/hash.h', 56 'src/include/libxml/hash.h',
57 'src/include/libxml/HTMLparser.h', 57 'src/include/libxml/HTMLparser.h',
58 'src/include/libxml/HTMLtree.h', 58 'src/include/libxml/HTMLtree.h',
59 'src/include/libxml/libxml_utils.h',
59 'src/include/libxml/list.h', 60 'src/include/libxml/list.h',
60 'src/include/libxml/nanoftp.h', 61 'src/include/libxml/nanoftp.h',
61 'src/include/libxml/nanohttp.h', 62 'src/include/libxml/nanohttp.h',
62 'src/include/libxml/parser.h', 63 'src/include/libxml/parser.h',
63 'src/include/libxml/parserInternals.h', 64 'src/include/libxml/parserInternals.h',
64 'src/include/libxml/pattern.h', 65 'src/include/libxml/pattern.h',
65 'src/include/libxml/relaxng.h', 66 'src/include/libxml/relaxng.h',
66 'src/include/libxml/SAX.h', 67 'src/include/libxml/SAX.h',
67 'src/include/libxml/SAX2.h', 68 'src/include/libxml/SAX2.h',
68 'src/include/libxml/schemasInternals.h', 69 'src/include/libxml/schemasInternals.h',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 'src/elfgcchack.h', 103 'src/elfgcchack.h',
103 'src/encoding.c', 104 'src/encoding.c',
104 'src/entities.c', 105 'src/entities.c',
105 'src/error.c', 106 'src/error.c',
106 'src/globals.c', 107 'src/globals.c',
107 'src/hash.c', 108 'src/hash.c',
108 'src/HTMLparser.c', 109 'src/HTMLparser.c',
109 'src/HTMLtree.c', 110 'src/HTMLtree.c',
110 'src/legacy.c', 111 'src/legacy.c',
111 'src/libxml.h', 112 'src/libxml.h',
113 'src/libxml_utils.cc',
112 'src/list.c', 114 'src/list.c',
113 'src/nanoftp.c', 115 'src/nanoftp.c',
114 'src/nanohttp.c', 116 'src/nanohttp.c',
115 'src/parser.c', 117 'src/parser.c',
116 'src/parserInternals.c', 118 'src/parserInternals.c',
117 'src/pattern.c', 119 'src/pattern.c',
118 'src/relaxng.c', 120 'src/relaxng.c',
119 'src/SAX.c', 121 'src/SAX.c',
120 'src/SAX2.c', 122 'src/SAX2.c',
121 'src/schematron.c', 123 'src/schematron.c',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 '-Wno-pointer-sign', 210 '-Wno-pointer-sign',
209 '-Wno-empty-body', 211 '-Wno-empty-body',
210 ], 212 ],
211 }], 213 }],
212 ], 214 ],
213 }], 215 }],
214 ], 216 ],
215 }, 217 },
216 ], 218 ],
217 } 219 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698