| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 }], | 313 }], |
| 314 ], | 314 ], |
| 315 }, | 315 }, |
| 316 'VCLinkerTool': { | 316 'VCLinkerTool': { |
| 317 'LinkIncremental': '2', | 317 'LinkIncremental': '2', |
| 318 }, | 318 }, |
| 319 }, | 319 }, |
| 320 'conditions': [ | 320 'conditions': [ |
| 321 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', { | 321 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', { |
| 322 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', | 322 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', |
| 323 '-Wnon-virtual-dtor', '-Woverloaded-virtual' ], | 323 '-Wnon-virtual-dtor', '-Woverloaded-virtual', |
| 324 '-Wno-unused-local-typedefs' ], |
| 324 }], | 325 }], |
| 325 ], | 326 ], |
| 326 }, # Debug | 327 }, # Debug |
| 327 'Release': { | 328 'Release': { |
| 328 'conditions': [ | 329 'conditions': [ |
| 329 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" \ | 330 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" \ |
| 330 or OS=="android"', { | 331 or OS=="android"', { |
| 331 'cflags!': [ | 332 'cflags!': [ |
| 332 '-O2', | 333 '-O2', |
| 333 '-Os', | 334 '-Os', |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 'OptimizeReferences': '2', | 387 'OptimizeReferences': '2', |
| 387 'EnableCOMDATFolding': '2', | 388 'EnableCOMDATFolding': '2', |
| 388 }, | 389 }, |
| 389 }, | 390 }, |
| 390 }], # OS=="win" | 391 }], # OS=="win" |
| 391 ], # conditions | 392 ], # conditions |
| 392 }, # Release | 393 }, # Release |
| 393 }, # configurations | 394 }, # configurations |
| 394 }, # target_defaults | 395 }, # target_defaults |
| 395 } | 396 } |
| OLD | NEW |