| 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_download_manager.cc", | 14 "core/browser/translate_download_manager.cc", |
| 15 "core/browser/translate_download_manager.h", | 15 "core/browser/translate_download_manager.h", |
| 16 "core/browser/translate_driver.h", | 16 "core/browser/translate_driver.h", |
| 17 "core/browser/translate_error_details.h", | 17 "core/browser/translate_error_details.h", |
| 18 "core/browser/translate_event_details.cc", | 18 "core/browser/translate_event_details.cc", |
| 19 "core/browser/translate_event_details.h", | 19 "core/browser/translate_event_details.h", |
| 20 "core/browser/translate_language_list.cc", |
| 21 "core/browser/translate_language_list.h", |
| 20 "core/browser/translate_url_fetcher.cc", | 22 "core/browser/translate_url_fetcher.cc", |
| 21 "core/browser/translate_url_fetcher.h", | 23 "core/browser/translate_url_fetcher.h", |
| 24 "core/browser/translate_url_util.cc", |
| 25 "core/browser/translate_url_util.h", |
| 22 ] | 26 ] |
| 23 | 27 |
| 24 deps = [ | 28 deps = [ |
| 25 ":translate_core_common", | 29 ":translate_core_common", |
| 26 "//base", | 30 "//base", |
| 27 "//url", | 31 "//url", |
| 28 ] | 32 ] |
| 29 } | 33 } |
| 30 | 34 |
| 31 static_library("translate_core_common") { | 35 static_library("translate_core_common") { |
| 32 external = true | 36 external = true |
| 33 | 37 |
| 34 sources = [ | 38 sources = [ |
| 35 "core/common/language_detection_details.cc", | 39 "core/common/language_detection_details.cc", |
| 36 "core/common/language_detection_details.h", | 40 "core/common/language_detection_details.h", |
| 37 "core/common/translate_constants.cc", | 41 "core/common/translate_constants.cc", |
| 38 "core/common/translate_constants.h", | 42 "core/common/translate_constants.h", |
| 39 "core/common/translate_errors.h", | 43 "core/common/translate_errors.h", |
| 40 "core/common/translate_metrics.cc", | 44 "core/common/translate_metrics.cc", |
| 41 "core/common/translate_metrics.h", | 45 "core/common/translate_metrics.h", |
| 46 "core/common/translate_pref_names.cc", |
| 47 "core/common/translate_pref_names.h", |
| 42 "core/common/translate_switches.cc", | 48 "core/common/translate_switches.cc", |
| 43 "core/common/translate_switches.h", | 49 "core/common/translate_switches.h", |
| 44 "core/common/translate_util.cc", | 50 "core/common/translate_util.cc", |
| 45 "core/common/translate_util.h", | 51 "core/common/translate_util.h", |
| 46 ] | 52 ] |
| 47 | 53 |
| 48 deps = [ | 54 deps = [ |
| 49 "//base", | 55 "//base", |
| 50 "//url", | 56 "//url", |
| 51 ] | 57 ] |
| 52 } | 58 } |
| OLD | NEW |