BUILD.gn 688 B

123456789101112131415161718192021222324252627282930
  1. # Copyright 2014 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. static_library("common") {
  5. sources = [
  6. "alt_game_images.cc",
  7. "alt_game_images.h",
  8. "error.cc",
  9. "error.h",
  10. "error_page_switches.cc",
  11. "error_page_switches.h",
  12. "localized_error.cc",
  13. "localized_error.h",
  14. "net_error_info.cc",
  15. "net_error_info.h",
  16. ]
  17. deps = [
  18. "//base",
  19. "//base:i18n",
  20. "//build:chromeos_buildflags",
  21. "//components/offline_pages/core:switches",
  22. "//components/strings",
  23. "//components/url_formatter",
  24. "//net",
  25. "//ui/base",
  26. "//url",
  27. ]
  28. }