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

static_library("common") {
  sources = [
    "error.cc",
    "error.h",
    "error_page_features.cc",
    "error_page_features.h",
    "error_page_params.cc",
    "error_page_params.h",
    "error_page_switches.cc",
    "error_page_switches.h",
    "localized_error.cc",
    "localized_error.h",
    "net_error_info.cc",
    "net_error_info.h",
  ]

  deps = [
    "//base",
    "//base:i18n",
    "//components/offline_pages/core:switches",
    "//components/strings",
    "//components/url_formatter",
    "//net",
    "//ui/base",
    "//url",
  ]
}