| 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': 'libcxx_proxy', | 8 'target_name': 'libcxx_proxy', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'toolsets': ['host', 'target'], | 10 'toolsets': ['host', 'target'], |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 'type': 'shared_library', | 50 'type': 'shared_library', |
| 51 'toolsets': ['host', 'target'], | 51 'toolsets': ['host', 'target'], |
| 52 'dependencies=': [ | 52 'dependencies=': [ |
| 53 # libc++abi is linked statically into libc++.so. This allows us to get | 53 # libc++abi is linked statically into libc++.so. This allows us to get |
| 54 # both libc++ and libc++abi by passing '-stdlib=libc++'. If libc++abi | 54 # both libc++ and libc++abi by passing '-stdlib=libc++'. If libc++abi |
| 55 # was a separate DSO, we'd have to link against it explicitly. | 55 # was a separate DSO, we'd have to link against it explicitly. |
| 56 '../libc++abi/libc++abi.gyp:libc++abi', | 56 '../libc++abi/libc++abi.gyp:libc++abi', |
| 57 ], | 57 ], |
| 58 'sources': [ | 58 'sources': [ |
| 59 'trunk/src/algorithm.cpp', | 59 'trunk/src/algorithm.cpp', |
| 60 'trunk/src/any.cpp', |
| 60 'trunk/src/bind.cpp', | 61 'trunk/src/bind.cpp', |
| 61 'trunk/src/chrono.cpp', | 62 'trunk/src/chrono.cpp', |
| 62 'trunk/src/condition_variable.cpp', | 63 'trunk/src/condition_variable.cpp', |
| 63 'trunk/src/debug.cpp', | 64 'trunk/src/debug.cpp', |
| 64 'trunk/src/exception.cpp', | 65 'trunk/src/exception.cpp', |
| 65 'trunk/src/future.cpp', | 66 'trunk/src/future.cpp', |
| 66 'trunk/src/hash.cpp', | 67 'trunk/src/hash.cpp', |
| 67 'trunk/src/ios.cpp', | 68 'trunk/src/ios.cpp', |
| 68 'trunk/src/iostream.cpp', | 69 'trunk/src/iostream.cpp', |
| 69 'trunk/src/locale.cpp', | 70 'trunk/src/locale.cpp', |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 'libraries': [ | 113 'libraries': [ |
| 113 '-lc', | 114 '-lc', |
| 114 '-lgcc_s', | 115 '-lgcc_s', |
| 115 '-lm', | 116 '-lm', |
| 116 '-lpthread', | 117 '-lpthread', |
| 117 '-lrt', | 118 '-lrt', |
| 118 ], | 119 ], |
| 119 }, | 120 }, |
| 120 ] | 121 ] |
| 121 } | 122 } |
| OLD | NEW |