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

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

Issue 1128733002: Update from https://crrev.com/328418 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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
« no previous file with comments | « third_party/libevent/nacl_nonsfi/signal_stub.c ('k') | third_party/libxml/OWNERS » ('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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 "src/include/libxml/c14n.h", 58 "src/include/libxml/c14n.h",
59 "src/include/libxml/catalog.h", 59 "src/include/libxml/catalog.h",
60 "src/include/libxml/chvalid.h", 60 "src/include/libxml/chvalid.h",
61 "src/include/libxml/debugXML.h", 61 "src/include/libxml/debugXML.h",
62 "src/include/libxml/dict.h", 62 "src/include/libxml/dict.h",
63 "src/include/libxml/encoding.h", 63 "src/include/libxml/encoding.h",
64 "src/include/libxml/entities.h", 64 "src/include/libxml/entities.h",
65 "src/include/libxml/globals.h", 65 "src/include/libxml/globals.h",
66 "src/include/libxml/hash.h", 66 "src/include/libxml/hash.h",
67 "src/include/libxml/list.h", 67 "src/include/libxml/list.h",
68 "src/include/libxml/nanoftp.h",
69 "src/include/libxml/nanohttp.h",
70 "src/include/libxml/parser.h", 68 "src/include/libxml/parser.h",
71 "src/include/libxml/parserInternals.h", 69 "src/include/libxml/parserInternals.h",
72 "src/include/libxml/pattern.h", 70 "src/include/libxml/pattern.h",
73 "src/include/libxml/relaxng.h", 71 "src/include/libxml/relaxng.h",
74 "src/include/libxml/schemasInternals.h", 72 "src/include/libxml/schemasInternals.h",
75 "src/include/libxml/schematron.h", 73 "src/include/libxml/schematron.h",
76 "src/include/libxml/threads.h", 74 "src/include/libxml/threads.h",
77 "src/include/libxml/tree.h", 75 "src/include/libxml/tree.h",
78 "src/include/libxml/uri.h", 76 "src/include/libxml/uri.h",
79 "src/include/libxml/valid.h", 77 "src/include/libxml/valid.h",
(...skipping 14 matching lines...) Expand all
94 "src/include/libxml/xmlunicode.h", 92 "src/include/libxml/xmlunicode.h",
95 "src/include/libxml/xmlwriter.h", 93 "src/include/libxml/xmlwriter.h",
96 "src/include/libxml/xpath.h", 94 "src/include/libxml/xpath.h",
97 "src/include/libxml/xpathInternals.h", 95 "src/include/libxml/xpathInternals.h",
98 "src/include/libxml/xpointer.h", 96 "src/include/libxml/xpointer.h",
99 "src/include/win32config.h", 97 "src/include/win32config.h",
100 "src/include/wsockcompat.h", 98 "src/include/wsockcompat.h",
101 "src/legacy.c", 99 "src/legacy.c",
102 "src/libxml.h", 100 "src/libxml.h",
103 "src/list.c", 101 "src/list.c",
104 "src/nanoftp.c",
105 "src/nanohttp.c",
106 "src/parser.c", 102 "src/parser.c",
107 "src/parserInternals.c", 103 "src/parserInternals.c",
108 "src/pattern.c", 104 "src/pattern.c",
109 "src/relaxng.c", 105 "src/relaxng.c",
110 "src/schematron.c", 106 "src/schematron.c",
111 "src/threads.c", 107 "src/threads.c",
112 "src/tree.c", 108 "src/tree.c",
113 109
114 #"src/trio.c", 110 #"src/trio.c",
115 #"src/trio.h", 111 #"src/trio.h",
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 "-Wno-tautological-pointer-compare", 171 "-Wno-tautological-pointer-compare",
176 172
177 # threads.c attempts to forward declare a pthread_equal which doesn't 173 # threads.c attempts to forward declare a pthread_equal which doesn't
178 # match the prototype in pthreads.h 174 # match the prototype in pthreads.h
179 "-Wno-ignored-attributes", 175 "-Wno-ignored-attributes",
180 ] 176 ]
181 } 177 }
182 178
183 include_dirs = [ "$os_include" ] 179 include_dirs = [ "$os_include" ]
184 } 180 }
OLDNEW
« no previous file with comments | « third_party/libevent/nacl_nonsfi/signal_stub.c ('k') | third_party/libxml/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698