mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
30 lines
657 B
Plaintext
30 lines
657 B
Plaintext
# 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_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",
|
|
]
|
|
}
|