| OLD | NEW |
| 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 21 matching lines...) Expand all Loading... |
| 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", | 41 "src/acconfig.h", |
| 42 "src/buf.c", |
| 43 "src/buf.h", |
| 42 "src/c14n.c", | 44 "src/c14n.c", |
| 43 "src/catalog.c", | 45 "src/catalog.c", |
| 44 "src/chvalid.c", | 46 "src/chvalid.c", |
| 45 "src/debugXML.c", | 47 "src/debugXML.c", |
| 46 "src/dict.c", | 48 "src/dict.c", |
| 47 "src/elfgcchack.h", | 49 "src/elfgcchack.h", |
| 48 "src/encoding.c", | 50 "src/encoding.c", |
| 49 "src/entities.c", | 51 "src/entities.c", |
| 50 "src/error.c", | 52 "src/error.c", |
| 51 "src/globals.c", | 53 "src/globals.c", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 "-Wno-tautological-pointer-compare", | 173 "-Wno-tautological-pointer-compare", |
| 172 | 174 |
| 173 # threads.c attempts to forward declare a pthread_equal which doesn't | 175 # threads.c attempts to forward declare a pthread_equal which doesn't |
| 174 # match the prototype in pthreads.h | 176 # match the prototype in pthreads.h |
| 175 "-Wno-ignored-attributes", | 177 "-Wno-ignored-attributes", |
| 176 ] | 178 ] |
| 177 } | 179 } |
| 178 | 180 |
| 179 include_dirs = [ "$os_include" ] | 181 include_dirs = [ "$os_include" ] |
| 180 } | 182 } |
| OLD | NEW |