You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
750 B
19 lines
750 B
// Copyright 2020 The Chromium OS Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// +build !android_llvm_next_flags
|
|
|
|
package main
|
|
|
|
// This file defines extra flags for llvm-next testing for Chrome OS. Importantly, these flags don't
|
|
// apply to Android's llvm-next wrapper. Android's toolchain-utils copy has a
|
|
// `android_llvm_next_flags.go` file downstream that defines its llvm-next arguments. As you can
|
|
// probably infer, `android_llvm_next_flags.go` is only compiled if the `android_llvm_next_flags`
|
|
// tag is set.
|
|
|
|
// TODO: Enable test in config_test.go, once we have new llvm-next flags.
|
|
var llvmNextFlags = []string{}
|
|
|
|
var llvmNextPostFlags = []string{}
|