| OLD | NEW | 
|---|
| 1 # Copyright 2014 PDFium Authors. All rights reserved. | 1 # Copyright 2014 PDFium 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 # Definitions to be used when building stand-alone PDFium binaries. | 5 # Definitions to be used when building stand-alone PDFium binaries. | 
| 6 | 6 | 
| 7 { | 7 { | 
| 8   'variables': { | 8   'variables': { | 
| 9     'component%': 'static_library', | 9     'component%': 'static_library', | 
| 10     'clang%': 0, | 10     'clang%': 0, | 
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 254       # to use setjmp/longjmp for e.g. JPEG decode error handling, which | 254       # to use setjmp/longjmp for e.g. JPEG decode error handling, which | 
| 255       # means we have to turn off this warning (and be careful about how | 255       # means we have to turn off this warning (and be careful about how | 
| 256       # object destruction happens in such cases). | 256       # object destruction happens in such cases). | 
| 257       4611, | 257       4611, | 
| 258 | 258 | 
| 259       # TODO(thestig): These warnings are level 4. They will be slowly | 259       # TODO(thestig): These warnings are level 4. They will be slowly | 
| 260       # removed as code is fixed. | 260       # removed as code is fixed. | 
| 261       4100, # Unreferenced formal parameter | 261       4100, # Unreferenced formal parameter | 
| 262       4121, # Alignment of a member was sensitive to packing | 262       4121, # Alignment of a member was sensitive to packing | 
| 263       4244, # Conversion from 'type1' to 'type2', possible loss of data | 263       4244, # Conversion from 'type1' to 'type2', possible loss of data | 
| 264       4481, # Nonstandard extension used: override specifier 'keyword' |  | 
| 265       4505, # Unreferenced local function has been removed | 264       4505, # Unreferenced local function has been removed | 
| 266       4510, # Default constructor could not be generated | 265       4510, # Default constructor could not be generated | 
| 267       4512, # Assignment operator could not be generated | 266       4512, # Assignment operator could not be generated | 
| 268       4610, # Object can never be instantiated | 267       4610, # Object can never be instantiated | 
| 269       4838, # Narrowing conversion. Doesn't seem to be very useful. | 268       4838, # Narrowing conversion. Doesn't seem to be very useful. | 
| 270       4995, # 'X': name was marked as #pragma deprecated | 269       4995, # 'X': name was marked as #pragma deprecated | 
| 271       4996, # 'X': was declared deprecated (for GetVersionEx). | 270       4996, # 'X': was declared deprecated (for GetVersionEx). | 
| 272 | 271 | 
| 273       # These are variable shadowing warnings that are new in VS2015. We | 272       # These are variable shadowing warnings that are new in VS2015. We | 
| 274       # should work through these at some point -- they may be removed from | 273       # should work through these at some point -- they may be removed from | 
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 440       ], | 439       ], | 
| 441     }],  # OS=="linux" or OS=="mac" | 440     }],  # OS=="linux" or OS=="mac" | 
| 442     ["use_goma==1", { | 441     ["use_goma==1", { | 
| 443       'make_global_settings': [ | 442       'make_global_settings': [ | 
| 444         ['CC_wrapper', '<(gomadir)/gomacc'], | 443         ['CC_wrapper', '<(gomadir)/gomacc'], | 
| 445         ['CXX_wrapper', '<(gomadir)/gomacc'], | 444         ['CXX_wrapper', '<(gomadir)/gomacc'], | 
| 446       ], | 445       ], | 
| 447     }],  # use_goma==1 | 446     }],  # use_goma==1 | 
| 448   ], | 447   ], | 
| 449 } | 448 } | 
| OLD | NEW | 
|---|