| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'libc++abi', | 8 'target_name': 'libc++abi', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'toolsets': ['host', 'target'], | 10 'toolsets': ['host', 'target'], |
| 11 'dependencies=': [], | 11 'dependencies=': [], |
| 12 'sources': [ | 12 'sources': [ |
| 13 'trunk/src/abort_message.cpp', | 13 'trunk/src/abort_message.cpp', |
| 14 'trunk/src/cxa_aux_runtime.cpp', | 14 'trunk/src/cxa_aux_runtime.cpp', |
| 15 'trunk/src/cxa_default_handlers.cpp', | 15 'trunk/src/cxa_default_handlers.cpp', |
| 16 'trunk/src/cxa_demangle.cpp', | 16 'trunk/src/cxa_demangle.cpp', |
| 17 'trunk/src/cxa_exception.cpp', | 17 'trunk/src/cxa_exception.cpp', |
| 18 'trunk/src/cxa_exception_storage.cpp', | 18 'trunk/src/cxa_exception_storage.cpp', |
| 19 'trunk/src/cxa_guard.cpp', | 19 'trunk/src/cxa_guard.cpp', |
| 20 'trunk/src/cxa_handlers.cpp', | 20 'trunk/src/cxa_handlers.cpp', |
| 21 'trunk/src/cxa_new_delete.cpp', | 21 'trunk/src/cxa_new_delete.cpp', |
| 22 'trunk/src/cxa_personality.cpp', | 22 'trunk/src/cxa_personality.cpp', |
| 23 'trunk/src/cxa_thread_atexit.cpp', |
| 23 'trunk/src/cxa_unexpected.cpp', | 24 'trunk/src/cxa_unexpected.cpp', |
| 24 'trunk/src/cxa_vector.cpp', | 25 'trunk/src/cxa_vector.cpp', |
| 25 'trunk/src/cxa_virtual.cpp', | 26 'trunk/src/cxa_virtual.cpp', |
| 26 'trunk/src/exception.cpp', | 27 'trunk/src/exception.cpp', |
| 27 'trunk/src/private_typeinfo.cpp', | 28 'trunk/src/private_typeinfo.cpp', |
| 28 'trunk/src/stdexcept.cpp', | 29 'trunk/src/stdexcept.cpp', |
| 29 'trunk/src/typeinfo.cpp', | 30 'trunk/src/typeinfo.cpp', |
| 30 ], | 31 ], |
| 31 'include_dirs': [ | 32 'include_dirs': [ |
| 32 'trunk/include', | 33 'trunk/include', |
| 33 '../libc++/trunk/include' | 34 '../libc++/trunk/include' |
| 34 ], | 35 ], |
| 35 'cflags': [ | 36 'cflags': [ |
| 36 '-fPIC', | 37 '-fPIC', |
| 37 '-fstrict-aliasing', | 38 '-fstrict-aliasing', |
| 38 '-nostdinc++', | 39 '-nostdinc++', |
| 39 '-pthread', | 40 '-pthread', |
| 40 '-std=c++11', | 41 '-std=c++11', |
| 41 ], | 42 ], |
| 42 'cflags_cc!': [ | 43 'cflags_cc!': [ |
| 43 '-fno-exceptions', | 44 '-fno-exceptions', |
| 44 '-fno-rtti', | 45 '-fno-rtti', |
| 45 ], | 46 ], |
| 46 'cflags!': [ | 47 'cflags!': [ |
| 47 '-fvisibility=hidden', | 48 '-fvisibility=hidden', |
| 48 ], | 49 ], |
| 49 }, | 50 }, |
| 50 ] | 51 ] |
| 51 } | 52 } |
| OLD | NEW |