BUILD.gn 500 B

1234567891011121314151617181920212223
  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. assert(is_android)
  5. static_library("android_system_error_page") {
  6. sources = [
  7. "error_page_populator.cc",
  8. "error_page_populator.h",
  9. ]
  10. deps = [
  11. "//base",
  12. "//base:i18n",
  13. "//components/resources",
  14. "//components/strings",
  15. "//net",
  16. "//third_party/blink/public:blink",
  17. "//ui/base",
  18. "//url",
  19. ]
  20. }