chromium/chrome/browser/chrome_for_testing/BUILD.gn

# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/buildflag_header.gni")
import("//build/config/chrome_build.gni")

assert(is_chrome_for_testing)

group("chrome_for_testing") {
  deps = [
    ":generate_about_file",
    "//third_party/hyphenation-patterns:bundle_hyphen_data",
  ]
}

action("generate_about_file") {
  script = "//chrome/browser/chrome_for_testing/tools/generate_about_file.py"
  args = [
    "--output-file",
    rebase_path("$root_out_dir/ABOUT"),
  ]
  outputs = [ "$root_out_dir/ABOUT" ]
}