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) { | 7 if (is_linux) { |
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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 "src/xmlschemastypes.c", | 133 "src/xmlschemastypes.c", |
134 "src/xmlstring.c", | 134 "src/xmlstring.c", |
135 "src/xmlunicode.c", | 135 "src/xmlunicode.c", |
136 "src/xmlwriter.c", | 136 "src/xmlwriter.c", |
137 "src/xpath.c", | 137 "src/xpath.c", |
138 "src/xpointer.c", | 138 "src/xpointer.c", |
139 "win32/config.h", | 139 "win32/config.h", |
140 "win32/include/libxml/xmlversion.h", | 140 "win32/include/libxml/xmlversion.h", |
141 ] | 141 ] |
142 | 142 |
143 configs -= "//build/config/compiler:chromium_code" | 143 configs -= [ "//build/config/compiler:chromium_code" ] |
144 configs += "//build/config/compiler:no_chromium_code" | 144 configs += [ "//build/config/compiler:no_chromium_code" ] |
145 | 145 |
146 direct_dependent_configs = [ ":libxml_config" ] | 146 direct_dependent_configs = [ ":libxml_config" ] |
147 forward_dependent_configs_from = [ "//third_party/icu:icuuc" ] | 147 forward_dependent_configs_from = [ "//third_party/icu:icuuc" ] |
148 | 148 |
149 deps = [ | 149 deps = [ |
150 "//third_party/icu:icuuc", | 150 "//third_party/icu:icuuc", |
151 "//third_party/zlib", | 151 "//third_party/zlib", |
152 ] | 152 ] |
153 | 153 |
154 if (is_win) { | 154 if (is_win) { |
(...skipping 23 matching lines...) Expand all Loading... |
178 | 178 |
179 # See http://crbug.com/138571#c8 | 179 # See http://crbug.com/138571#c8 |
180 "-Wno-ignored-attributes", | 180 "-Wno-ignored-attributes", |
181 ] | 181 ] |
182 } | 182 } |
183 | 183 |
184 include_dirs = [ | 184 include_dirs = [ |
185 "$os_include", | 185 "$os_include", |
186 ] | 186 ] |
187 } | 187 } |
OLD | NEW |