BUILD.gn 485 B

1234567891011121314151617181920
  1. # Copyright 2020 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. import("//build/config/chromeos/ui_mode.gni")
  5. assert(is_chromeos_ash, "These utils are ash-chrome only")
  6. static_library("web_applications") {
  7. sources = [
  8. "webui_test_prod_util.cc",
  9. "webui_test_prod_util.h",
  10. ]
  11. deps = [
  12. "//base",
  13. "//base:i18n",
  14. "//content/public/browser",
  15. "//ui/base",
  16. ]
  17. }