| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # BUILD FLAGS | 6 # BUILD FLAGS |
| 7 # ============================================================================= | 7 # ============================================================================= |
| 8 # | 8 # |
| 9 # This block lists input arguments to the build, along with their default | 9 # This block lists input arguments to the build, along with their default |
| 10 # values. GN requires listing them explicitly so it can validate input and have | 10 # values. GN requires listing them explicitly so it can validate input and have |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 # Special toolchain for ARM cross-compiling. | 379 # Special toolchain for ARM cross-compiling. |
| 380 set_default_toolchain("//build/toolchain/linux:arm-cross-compile") | 380 set_default_toolchain("//build/toolchain/linux:arm-cross-compile") |
| 381 } else { | 381 } else { |
| 382 # Use whatever GCC is on the current platform. | 382 # Use whatever GCC is on the current platform. |
| 383 set_default_toolchain(host_toolchain) | 383 set_default_toolchain(host_toolchain) |
| 384 } | 384 } |
| 385 } else if (is_mac) { | 385 } else if (is_mac) { |
| 386 host_toolchain = "//build/toolchain/mac:clang" | 386 host_toolchain = "//build/toolchain/mac:clang" |
| 387 set_default_toolchain(host_toolchain) | 387 set_default_toolchain(host_toolchain) |
| 388 } | 388 } |
| OLD | NEW |