Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(990)

Side by Side Diff: tools/gn/secondary/components/translate/BUILD.gn

Issue 131463002: Move TranslateURLFetcher to the translate component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix translate.gypi for real Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/translate/core/browser/translate_url_fetcher.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/page_translated_details.h", 9 "core/browser/page_translated_details.h",
10 "core/browser/translate_browser_metrics.cc", 10 "core/browser/translate_browser_metrics.cc",
11 "core/browser/translate_browser_metrics.h", 11 "core/browser/translate_browser_metrics.h",
12 "core/browser/translate_delegate.h",
12 "core/browser/translate_error_details.h", 13 "core/browser/translate_error_details.h",
13 "core/browser/translate_event_details.cc", 14 "core/browser/translate_event_details.cc",
14 "core/browser/translate_event_details.h", 15 "core/browser/translate_event_details.h",
16 "core/browser/translate_url_fetcher.cc",
17 "core/browser/translate_url_fetcher.h",
15 ] 18 ]
16 19
17 deps = [ 20 deps = [
21 ":translate_core_common",
18 "//base", 22 "//base",
19 "//url", 23 "//url",
20 ] 24 ]
21 } 25 }
22 26
23 static_library("translate_core_common") { 27 static_library("translate_core_common") {
24 external = true 28 external = true
25 29
26 sources = [ 30 sources = [
27 "core/common/language_detection_details.cc", 31 "core/common/language_detection_details.cc",
28 "core/common/language_detection_details.h", 32 "core/common/language_detection_details.h",
29 "core/common/translate_constants.cc", 33 "core/common/translate_constants.cc",
30 "core/common/translate_constants.h", 34 "core/common/translate_constants.h",
31 "core/common/translate_errors.h", 35 "core/common/translate_errors.h",
32 "core/common/translate_metrics.cc", 36 "core/common/translate_metrics.cc",
33 "core/common/translate_metrics.h", 37 "core/common/translate_metrics.h",
34 "core/common/translate_switches.cc", 38 "core/common/translate_switches.cc",
35 "core/common/translate_switches.h", 39 "core/common/translate_switches.h",
36 "core/common/translate_util.cc", 40 "core/common/translate_util.cc",
37 "core/common/translate_util.h", 41 "core/common/translate_util.h",
38 ] 42 ]
39 43
40 deps = [ 44 deps = [
41 "//base", 45 "//base",
42 "//url", 46 "//url",
43 ] 47 ]
44 } 48 }
OLDNEW
« no previous file with comments | « components/translate/core/browser/translate_url_fetcher.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698