| 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 | |
| 7 | |
| 8 sources = [ | 6 sources = [ |
| 9 "core/browser/language_state.cc", | 7 "core/browser/language_state.cc", |
| 10 "core/browser/language_state.h", | 8 "core/browser/language_state.h", |
| 11 "core/browser/page_translated_details.h", | 9 "core/browser/page_translated_details.h", |
| 12 "core/browser/translate_accept_languages.cc", | 10 "core/browser/translate_accept_languages.cc", |
| 13 "core/browser/translate_accept_languages.h", | 11 "core/browser/translate_accept_languages.h", |
| 14 "core/browser/translate_browser_metrics.cc", | 12 "core/browser/translate_browser_metrics.cc", |
| 15 "core/browser/translate_browser_metrics.h", | 13 "core/browser/translate_browser_metrics.h", |
| 16 "core/browser/translate_client.h", | 14 "core/browser/translate_client.h", |
| 17 "core/browser/translate_download_manager.cc", | 15 "core/browser/translate_download_manager.cc", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 33 ] | 31 ] |
| 34 | 32 |
| 35 deps = [ | 33 deps = [ |
| 36 ":translate_core_common", | 34 ":translate_core_common", |
| 37 "//base", | 35 "//base", |
| 38 "//url", | 36 "//url", |
| 39 ] | 37 ] |
| 40 } | 38 } |
| 41 | 39 |
| 42 static_library("translate_core_common") { | 40 static_library("translate_core_common") { |
| 43 external = true | |
| 44 | |
| 45 sources = [ | 41 sources = [ |
| 46 "core/common/language_detection_details.cc", | 42 "core/common/language_detection_details.cc", |
| 47 "core/common/language_detection_details.h", | 43 "core/common/language_detection_details.h", |
| 48 "core/common/translate_constants.cc", | 44 "core/common/translate_constants.cc", |
| 49 "core/common/translate_constants.h", | 45 "core/common/translate_constants.h", |
| 50 "core/common/translate_errors.h", | 46 "core/common/translate_errors.h", |
| 51 "core/common/translate_metrics.cc", | 47 "core/common/translate_metrics.cc", |
| 52 "core/common/translate_metrics.h", | 48 "core/common/translate_metrics.h", |
| 53 "core/common/translate_pref_names.cc", | 49 "core/common/translate_pref_names.cc", |
| 54 "core/common/translate_pref_names.h", | 50 "core/common/translate_pref_names.h", |
| 55 "core/common/translate_switches.cc", | 51 "core/common/translate_switches.cc", |
| 56 "core/common/translate_switches.h", | 52 "core/common/translate_switches.h", |
| 57 "core/common/translate_util.cc", | 53 "core/common/translate_util.cc", |
| 58 "core/common/translate_util.h", | 54 "core/common/translate_util.h", |
| 59 ] | 55 ] |
| 60 | 56 |
| 61 deps = [ | 57 deps = [ |
| 62 "//base", | 58 "//base", |
| 63 "//url", | 59 "//url", |
| 64 ] | 60 ] |
| 65 } | 61 } |
| OLD | NEW |