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

Side by Side Diff: trunk/src/tools/gn/secondary/third_party/libxml/BUILD.gn

Issue 257243003: Revert 266932 "GN build improvements." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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) 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) { 7 if (is_linux || is_android) {
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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 # debugXML.c compares array 'arg' to NULL. 181 # debugXML.c compares array 'arg' to NULL.
182 "-Wno-tautological-pointer-compare", 182 "-Wno-tautological-pointer-compare",
183 ] 183 ]
184 } 184 }
185 } 185 }
186 186
187 include_dirs = [ 187 include_dirs = [
188 "$os_include", 188 "$os_include",
189 ] 189 ]
190 } 190 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698