Chromium Code Reviews| 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 nacl_toolchain_dir = rebase_path("//native_client/toolchain", root_build_dir) | |
| 6 os_toolchain_dir = "${nacl_toolchain_dir}/${host_os}_x86" | |
|
brettw
2015/10/01 17:27:36
Since this is going to be basically a global varia
Petr Hosek
2015/10/03 05:25:27
Done.
| |
| 7 | |
| 5 declare_args() { | 8 declare_args() { |
| 6 # Native Client supports both Newlib and Glibc C libraries where Newlib | 9 # Native Client supports both Newlib and Glibc C libraries where Newlib |
| 7 # is assumed to be the default one; use this to determine whether Glibc | 10 # is assumed to be the default one; use this to determine whether Glibc |
| 8 # is being used instead. | 11 # is being used instead. |
| 9 is_nacl_glibc = false | 12 is_nacl_glibc = false |
| 10 } | 13 } |
| OLD | NEW |