| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 # Define an "os_include" variable that points at the OS-specific generated | 8 # Define an "os_include" variable that points at the OS-specific generated |
| 9 # headers. These were generated by running the configure script offline. | 9 # headers. These were generated by running the configure script offline. |
| 10 ['os_posix == 1 and OS != "mac" and OS != "ios"', { | 10 ['os_posix == 1 and OS != "mac" and OS != "ios"', { |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 # pattern.c and uri.c both have an intentional | 240 # pattern.c and uri.c both have an intentional |
| 241 # `for (...);` / `while(...);` loop. I submitted a patch to | 241 # `for (...);` / `while(...);` loop. I submitted a patch to |
| 242 # move the `'` to its own line, but until that's landed | 242 # move the `'` to its own line, but until that's landed |
| 243 # suppress the warning: | 243 # suppress the warning: |
| 244 '-Wno-empty-body', | 244 '-Wno-empty-body', |
| 245 ], | 245 ], |
| 246 }, | 246 }, |
| 247 'cflags': [ | 247 'cflags': [ |
| 248 '-Wno-pointer-sign', | 248 '-Wno-pointer-sign', |
| 249 '-Wno-empty-body', | 249 '-Wno-empty-body', |
| 250 |
| 251 # See http://crbug.com/138571#c8 |
| 252 '-Wno-ignored-attributes', |
| 250 ], | 253 ], |
| 251 }], | 254 }], |
| 252 ], | 255 ], |
| 253 }], | 256 }], |
| 254 ], | 257 ], |
| 255 }, | 258 }, |
| 256 ], | 259 ], |
| 257 } | 260 } |
| OLD | NEW |