| 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 'variables': { | 6 'variables': { |
| 7 'libcxx_root': '../../buildtools/third_party/libc++', | 7 'libcxx_root': '<(DEPTH)/buildtools/third_party/libc++', |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'libcxx_proxy', | 11 'target_name': 'libcxx_proxy', |
| 12 'type': 'none', | 12 'type': 'none', |
| 13 'toolsets': ['host', 'target'], | 13 'toolsets': ['host', 'target'], |
| 14 'dependencies=': [ | 14 'dependencies=': [ |
| 15 'libc++', | 15 'libc++', |
| 16 ], | 16 ], |
| 17 # Do not add dependency on libc++.so to dependents of this target. We | 17 # Do not add dependency on libc++.so to dependents of this target. We |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 'libraries': [ | 117 'libraries': [ |
| 118 '-lc', | 118 '-lc', |
| 119 '-lgcc_s', | 119 '-lgcc_s', |
| 120 '-lm', | 120 '-lm', |
| 121 '-lpthread', | 121 '-lpthread', |
| 122 '-lrt', | 122 '-lrt', |
| 123 ], | 123 ], |
| 124 }, | 124 }, |
| 125 ] | 125 ] |
| 126 } | 126 } |
| OLD | NEW |