Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 static_library("browser") { | |
| 6 sources = [ | |
| 7 "language_state.cc", | |
| 8 "language_state.h", | |
| 9 "page_translated_details.h", | |
| 10 "translate_accept_languages.cc", | |
| 11 "translate_accept_languages.h", | |
| 12 "translate_browser_metrics.cc", | |
| 13 "translate_browser_metrics.h", | |
| 14 "translate_client.h", | |
| 15 "translate_download_manager.cc", | |
| 16 "translate_download_manager.h", | |
| 17 "translate_driver.h", | |
| 18 "translate_error_details.h", | |
| 19 "translate_event_details.cc", | |
| 20 "translate_event_details.h", | |
| 21 "translate_language_list.cc", | |
| 22 "translate_language_list.h", | |
| 23 "translate_prefs.cc", | |
| 24 "translate_prefs.h", | |
| 25 "translate_script.cc", | |
| 26 "translate_script.h", | |
| 27 "translate_url_fetcher.cc", | |
| 28 "translate_url_fetcher.h", | |
| 29 "translate_url_util.cc", | |
| 30 "translate_url_util.h", | |
| 31 ] | |
| 32 | |
| 33 deps = [ | |
| 34 "//base", | |
| 35 "//components/language_usage_metrics", | |
| 36 "//components/resources:components_resources", | |
| 37 "//components/translate/core/common", | |
| 38 "//url", | |
| 39 ] | |
| 40 if (!is_android) { | |
| 41 # TODO(brettw) move thise above. This project uses net headers. This is | |
|
jamesr
2014/07/09 22:21:57
s/thise/these/
why not -= these out like we do in
brettw
2014/07/10 18:18:58
Actually, I think this should work on Android now
| |
| 42 # excluded for Android since net doesn't work in the GN build at the time | |
| 43 # of this writing. | |
| 44 deps += [ | |
| 45 "//net", | |
| 46 "//ui/base", | |
| 47 ] | |
| 48 } | |
| 49 } | |
| OLD | NEW |