# Simple executable target
executable("hello") {
  sources = [
    "hello.cc",
  ]
  deps = [
    "//base",
  ]
}

# Static library target
static_library("mylib") {
  sources = [
    "mylib.cc",
    "mylib.h",
  ]
  public_deps = [
    "//third_party/lib",
  ]
}
