Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

BUILD.gn
# source_set instead of static_library so that all test cpp files are loaded.
source_set("X86") {
  testonly = true
  deps = [
    "//llvm/lib/Target/X86",
    "//llvm/utils/unittest:gtest",

    # This test target reaches inside the Target/X86 tablegen internals and must
    # depend on this Target/X86-internal build target.
    "//llvm/lib/Target/X86/MCTargetDesc",
  ]
  include_dirs = [
    "..",
    "//llvm/lib/Target/X86",
    "//llvm/tools/llvm-mca",
  ]
  sources = [
    "TestIncrementalMCA.cpp",
    "X86TestBase.cpp",
  ]
}