| OLD | NEW |
| 1 { | 1 { |
| 2 'variables': { | 2 'variables': { |
| 3 'visibility%': 'hidden', | 3 'visibility%': 'hidden', |
| 4 'library%': 'static_library', | 4 'library%': 'static_library', |
| 5 'component%': '', | 5 'component%': '', |
| 6 'want_separate_host_toolset': 0, | 6 'want_separate_host_toolset': 0, |
| 7 'v8_optimized_debug': 0, |
| 8 'v8_enable_i18n_support': 0, |
| 7 }, | 9 }, |
| 8 | 10 |
| 9 'conditions': [ | 11 'conditions': [ |
| 10 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ | 12 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ |
| 11 or OS=="netbsd" or OS=="android"', { | 13 or OS=="netbsd" or OS=="android"', { |
| 12 'target_defaults': { | 14 'target_defaults': { |
| 13 'cflags': [ '-Wall', '-W', '-Wno-unused-parameter', | 15 'cflags': [ '-Wall', '-W', '-Wno-unused-parameter', |
| 14 '-Wnon-virtual-dtor', '-pthread', '-fno-rtti', | 16 '-Wnon-virtual-dtor', '-pthread', '-fno-rtti', |
| 15 '-pedantic', '-std=c++0x', '-fexceptions', ], | 17 '-pedantic', '-std=c++0x', '-fexceptions', ], |
| 16 'ldflags': [ '-pthread', ], | 18 'ldflags': [ '-pthread', ], |
| (...skipping 15 matching lines...) Expand all Loading... |
| 32 '-pthread', # Not supported by Android toolchain. | 34 '-pthread', # Not supported by Android toolchain. |
| 33 ], | 35 ], |
| 34 }, | 36 }, |
| 35 }], | 37 }], |
| 36 ], | 38 ], |
| 37 | 39 |
| 38 'target_defaults': { | 40 'target_defaults': { |
| 39 'msvs_cygwin_shell': 0, | 41 'msvs_cygwin_shell': 0, |
| 40 } | 42 } |
| 41 } | 43 } |
| OLD | NEW |