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

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

Issue 262013004: Fix gn check errors for translate component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: for real? Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 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 static_library("translate_core_browser") { 5 static_library("translate_core_browser") {
6 sources = [ 6 sources = [
7 "core/browser/language_state.cc", 7 "core/browser/language_state.cc",
8 "core/browser/language_state.h", 8 "core/browser/language_state.h",
9 "core/browser/page_translated_details.h", 9 "core/browser/page_translated_details.h",
10 "core/browser/translate_accept_languages.cc", 10 "core/browser/translate_accept_languages.cc",
(...skipping 23 matching lines...) Expand all
34 ":translate_core_common", 34 ":translate_core_common",
35 "//base", 35 "//base",
36 "//components/language_usage_metrics", 36 "//components/language_usage_metrics",
37 "//components/resources:components_resources", 37 "//components/resources:components_resources",
38 "//url", 38 "//url",
39 ] 39 ]
40 if (!is_android) { 40 if (!is_android) {
41 # TODO(brettw) move thise above. This project uses net headers. This is 41 # TODO(brettw) move thise above. This project uses net headers. This is
42 # excluded for Android since net doesn't work in the GN build at the time 42 # excluded for Android since net doesn't work in the GN build at the time
43 # of this writing. 43 # of this writing.
44 deps += [ "//net" ] 44 deps += [
45 "//net",
46 "//ui/base:ui_base",
47 ]
45 } 48 }
46 } 49 }
47 50
48 static_library("translate_core_common") { 51 static_library("translate_core_common") {
49 sources = [ 52 sources = [
50 "core/common/language_detection_details.cc", 53 "core/common/language_detection_details.cc",
51 "core/common/language_detection_details.h", 54 "core/common/language_detection_details.h",
52 "core/common/translate_constants.cc", 55 "core/common/translate_constants.cc",
53 "core/common/translate_constants.h", 56 "core/common/translate_constants.h",
54 "core/common/translate_errors.h", 57 "core/common/translate_errors.h",
55 "core/common/translate_metrics.cc", 58 "core/common/translate_metrics.cc",
56 "core/common/translate_metrics.h", 59 "core/common/translate_metrics.h",
57 "core/common/translate_pref_names.cc", 60 "core/common/translate_pref_names.cc",
58 "core/common/translate_pref_names.h", 61 "core/common/translate_pref_names.h",
59 "core/common/translate_switches.cc", 62 "core/common/translate_switches.cc",
60 "core/common/translate_switches.h", 63 "core/common/translate_switches.h",
61 "core/common/translate_util.cc", 64 "core/common/translate_util.cc",
62 "core/common/translate_util.h", 65 "core/common/translate_util.h",
63 ] 66 ]
64 67
65 deps = [ 68 deps = [
66 "//base", 69 "//base",
67 "//url", 70 "//url",
68 ] 71 ]
69 } 72 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698