| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 static_library("common") { | 5 static_library("common") { |
| 6 sources = [ | 6 sources = [ |
| 7 "error_page_params.cc", | 7 "error_page_params.cc", |
| 8 "error_page_params.h", | 8 "error_page_params.h", |
| 9 "error_page_switches.cc", | 9 "error_page_switches.cc", |
| 10 "error_page_switches.h", | 10 "error_page_switches.h", |
| 11 "localized_error.cc", | 11 "localized_error.cc", |
| 12 "localized_error.h", | 12 "localized_error.h", |
| 13 "net_error_info.cc", | 13 "net_error_info.cc", |
| 14 "net_error_info.h", | 14 "net_error_info.h", |
| 15 "offline_page_types.h", | |
| 16 ] | 15 ] |
| 17 | 16 |
| 18 deps = [ | 17 deps = [ |
| 19 "//base", | 18 "//base", |
| 20 "//base:i18n", | 19 "//base:i18n", |
| 21 "//components/offline_pages:switches", | 20 "//components/offline_pages:switches", |
| 22 "//components/strings", | 21 "//components/strings", |
| 23 "//components/url_formatter", | 22 "//components/url_formatter", |
| 24 "//net", | 23 "//net", |
| 25 "//ui/base", | 24 "//ui/base", |
| 26 "//url", | 25 "//url", |
| 27 ] | 26 ] |
| 28 } | 27 } |
| OLD | NEW |