| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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("translate_core_browser") { | 5 static_library("translate_core_browser") { |
| 6 external = true | 6 external = true |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "core/browser/language_state.cc", | 9 "core/browser/language_state.cc", |
| 10 "core/browser/language_state.h", | 10 "core/browser/language_state.h", |
| 11 "core/browser/page_translated_details.h", | 11 "core/browser/page_translated_details.h", |
| 12 "core/browser/translate_browser_metrics.cc", | 12 "core/browser/translate_browser_metrics.cc", |
| 13 "core/browser/translate_browser_metrics.h", | 13 "core/browser/translate_browser_metrics.h", |
| 14 "core/browser/translate_delegate.h", | 14 "core/browser/translate_download_manager.cc", |
| 15 "core/browser/translate_download_manager.h", |
| 15 "core/browser/translate_driver.h", | 16 "core/browser/translate_driver.h", |
| 16 "core/browser/translate_error_details.h", | 17 "core/browser/translate_error_details.h", |
| 17 "core/browser/translate_event_details.cc", | 18 "core/browser/translate_event_details.cc", |
| 18 "core/browser/translate_event_details.h", | 19 "core/browser/translate_event_details.h", |
| 19 "core/browser/translate_url_fetcher.cc", | 20 "core/browser/translate_url_fetcher.cc", |
| 20 "core/browser/translate_url_fetcher.h", | 21 "core/browser/translate_url_fetcher.h", |
| 21 ] | 22 ] |
| 22 | 23 |
| 23 deps = [ | 24 deps = [ |
| 24 ":translate_core_common", | 25 ":translate_core_common", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 42 "core/common/translate_switches.h", | 43 "core/common/translate_switches.h", |
| 43 "core/common/translate_util.cc", | 44 "core/common/translate_util.cc", |
| 44 "core/common/translate_util.h", | 45 "core/common/translate_util.h", |
| 45 ] | 46 ] |
| 46 | 47 |
| 47 deps = [ | 48 deps = [ |
| 48 "//base", | 49 "//base", |
| 49 "//url", | 50 "//url", |
| 50 ] | 51 ] |
| 51 } | 52 } |
| OLD | NEW |