| 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 source_set("browser") { | 7 static_library("browser") { |
| 8 sources = [ | 8 sources = [ |
| 9 "language_state.cc", | 9 "language_state.cc", |
| 10 "language_state.h", | 10 "language_state.h", |
| 11 "page_translated_details.h", | 11 "page_translated_details.h", |
| 12 "translate_accept_languages.cc", | 12 "translate_accept_languages.cc", |
| 13 "translate_accept_languages.h", | 13 "translate_accept_languages.h", |
| 14 "translate_browser_metrics.cc", | 14 "translate_browser_metrics.cc", |
| 15 "translate_browser_metrics.h", | 15 "translate_browser_metrics.h", |
| 16 "translate_client.h", | 16 "translate_client.h", |
| 17 "translate_download_manager.cc", | 17 "translate_download_manager.cc", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "//base", | 91 "//base", |
| 92 "//components/infobars/core", | 92 "//components/infobars/core", |
| 93 "//components/pref_registry:test_support", | 93 "//components/pref_registry:test_support", |
| 94 "//components/prefs", | 94 "//components/prefs", |
| 95 "//components/translate/core/common", | 95 "//components/translate/core/common", |
| 96 "//components/variations", | 96 "//components/variations", |
| 97 "//net:test_support", | 97 "//net:test_support", |
| 98 "//testing/gtest", | 98 "//testing/gtest", |
| 99 ] | 99 ] |
| 100 } | 100 } |
| OLD | NEW |