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

Side by Side Diff: third_party/libxml/BUILD.gn

Issue 1207543002: Update libxml gyp and BUILD.gn, was missing some .h files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn too Created 5 years, 5 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 | « no previous file | third_party/libxml/libxml.gyp » ('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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # Define an "os_include" variable that points at the OS-specific generated 5 # Define an "os_include" variable that points at the OS-specific generated
6 # headers. These were generated by running the configure script offline. 6 # headers. These were generated by running the configure script offline.
7 if (is_linux || is_android || is_nacl) { 7 if (is_linux || is_android || is_nacl) {
8 os_include = "linux" 8 os_include = "linux"
9 } else if (is_mac || is_ios) { 9 } else if (is_mac || is_ios) {
10 os_include = "mac" 10 os_include = "mac"
(...skipping 20 matching lines...) Expand all
31 "chromium/libxml_utils.h", 31 "chromium/libxml_utils.h",
32 "linux/config.h", 32 "linux/config.h",
33 "linux/include/libxml/xmlversion.h", 33 "linux/include/libxml/xmlversion.h",
34 "mac/config.h", 34 "mac/config.h",
35 "mac/include/libxml/xmlversion.h", 35 "mac/include/libxml/xmlversion.h",
36 "src/DOCBparser.c", 36 "src/DOCBparser.c",
37 "src/HTMLparser.c", 37 "src/HTMLparser.c",
38 "src/HTMLtree.c", 38 "src/HTMLtree.c",
39 "src/SAX.c", 39 "src/SAX.c",
40 "src/SAX2.c", 40 "src/SAX2.c",
41 "src/acconfig.h",
42 "src/buf.c", 41 "src/buf.c",
43 "src/buf.h", 42 "src/buf.h",
44 "src/c14n.c", 43 "src/c14n.c",
45 "src/catalog.c", 44 "src/catalog.c",
46 "src/chvalid.c", 45 "src/chvalid.c",
47 "src/debugXML.c", 46 "src/debugXML.c",
48 "src/dict.c", 47 "src/dict.c",
49 "src/elfgcchack.h", 48 "src/elfgcchack.h",
49 "src/enc.h",
50 "src/encoding.c", 50 "src/encoding.c",
51 "src/entities.c", 51 "src/entities.c",
52 "src/error.c", 52 "src/error.c",
53 "src/globals.c", 53 "src/globals.c",
54 "src/hash.c", 54 "src/hash.c",
55 "src/include/libxml/DOCBparser.h", 55 "src/include/libxml/DOCBparser.h",
56 "src/include/libxml/HTMLparser.h", 56 "src/include/libxml/HTMLparser.h",
57 "src/include/libxml/HTMLtree.h", 57 "src/include/libxml/HTMLtree.h",
58 "src/include/libxml/SAX.h", 58 "src/include/libxml/SAX.h",
59 "src/include/libxml/SAX2.h", 59 "src/include/libxml/SAX2.h",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 "src/include/libxml/xpointer.h", 98 "src/include/libxml/xpointer.h",
99 "src/include/win32config.h", 99 "src/include/win32config.h",
100 "src/include/wsockcompat.h", 100 "src/include/wsockcompat.h",
101 "src/legacy.c", 101 "src/legacy.c",
102 "src/libxml.h", 102 "src/libxml.h",
103 "src/list.c", 103 "src/list.c",
104 "src/parser.c", 104 "src/parser.c",
105 "src/parserInternals.c", 105 "src/parserInternals.c",
106 "src/pattern.c", 106 "src/pattern.c",
107 "src/relaxng.c", 107 "src/relaxng.c",
108 "src/save.h",
108 "src/schematron.c", 109 "src/schematron.c",
109 "src/threads.c", 110 "src/threads.c",
111 "src/timsort.c",
Nico 2015/06/23 22:16:25 oh, this should say .h
scottmg 2015/06/23 22:27:21 darn, maybe not best cl ever
110 "src/tree.c", 112 "src/tree.c",
111 113
112 #"src/trio.c", 114 #"src/trio.c",
113 #"src/trio.h", 115 #"src/trio.h",
114 #"src/triodef.h", 116 #"src/triodef.h",
115 #"src/trionan.c", 117 #"src/trionan.c",
116 #"src/trionan.h", 118 #"src/trionan.h",
117 #"src/triop.h", 119 #"src/triop.h",
118 #"src/triostr.c", 120 #"src/triostr.c",
119 #"src/triostr.h", 121 #"src/triostr.h",
120 "src/uri.c", 122 "src/uri.c",
121 "src/valid.c", 123 "src/valid.c",
122 "src/xinclude.c", 124 "src/xinclude.c",
123 "src/xlink.c", 125 "src/xlink.c",
124 "src/xmlIO.c", 126 "src/xmlIO.c",
125 "src/xmlmemory.c", 127 "src/xmlmemory.c",
126 "src/xmlmodule.c", 128 "src/xmlmodule.c",
127 "src/xmlreader.c", 129 "src/xmlreader.c",
128 "src/xmlregexp.c", 130 "src/xmlregexp.c",
129 "src/xmlsave.c", 131 "src/xmlsave.c",
130 "src/xmlschemas.c", 132 "src/xmlschemas.c",
131 "src/xmlschemastypes.c", 133 "src/xmlschemastypes.c",
132 "src/xmlstring.c", 134 "src/xmlstring.c",
133 "src/xmlunicode.c", 135 "src/xmlunicode.c",
134 "src/xmlwriter.c", 136 "src/xmlwriter.c",
135 "src/xpath.c", 137 "src/xpath.c",
136 "src/xpointer.c", 138 "src/xpointer.c",
139 #"src/xzlib.c",
140 "src/xzlib.h",
137 "win32/config.h", 141 "win32/config.h",
138 "win32/include/libxml/xmlversion.h", 142 "win32/include/libxml/xmlversion.h",
139 ] 143 ]
140 144
141 configs -= [ "//build/config/compiler:chromium_code" ] 145 configs -= [ "//build/config/compiler:chromium_code" ]
142 configs += [ "//build/config/compiler:no_chromium_code" ] 146 configs += [ "//build/config/compiler:no_chromium_code" ]
143 147
144 public_configs = [ ":libxml_config" ] 148 public_configs = [ ":libxml_config" ]
145 public_deps = [ 149 public_deps = [
146 "//third_party/icu:icuuc", 150 "//third_party/icu:icuuc",
(...skipping 26 matching lines...) Expand all
173 "-Wno-tautological-pointer-compare", 177 "-Wno-tautological-pointer-compare",
174 178
175 # threads.c attempts to forward declare a pthread_equal which doesn't 179 # threads.c attempts to forward declare a pthread_equal which doesn't
176 # match the prototype in pthreads.h 180 # match the prototype in pthreads.h
177 "-Wno-ignored-attributes", 181 "-Wno-ignored-attributes",
178 ] 182 ]
179 } 183 }
180 184
181 include_dirs = [ "$os_include" ] 185 include_dirs = [ "$os_include" ]
182 } 186 }
OLDNEW
« no previous file with comments | « no previous file | third_party/libxml/libxml.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698