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

Side by Side Diff: ios/chrome/browser/translate/BUILD.gn

Issue 2565873002: [translate] Add translate ranker model loader. (Closed)
Patch Set: comments from sdefresne Created 3 years, 9 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 source_set("translate") { 5 source_set("translate") {
6 sources = [ 6 sources = [
7 "after_translate_infobar_controller.h", 7 "after_translate_infobar_controller.h",
8 "after_translate_infobar_controller.mm", 8 "after_translate_infobar_controller.mm",
9 "before_translate_infobar_controller.h", 9 "before_translate_infobar_controller.h",
10 "before_translate_infobar_controller.mm", 10 "before_translate_infobar_controller.mm",
11 "chrome_ios_translate_client.h", 11 "chrome_ios_translate_client.h",
12 "chrome_ios_translate_client.mm", 12 "chrome_ios_translate_client.mm",
13 "never_translate_infobar_controller.h", 13 "never_translate_infobar_controller.h",
14 "never_translate_infobar_controller.mm", 14 "never_translate_infobar_controller.mm",
15 "translate_accept_languages_factory.cc", 15 "translate_accept_languages_factory.cc",
16 "translate_accept_languages_factory.h", 16 "translate_accept_languages_factory.h",
17 "translate_infobar_tags.h", 17 "translate_infobar_tags.h",
18 "translate_message_infobar_controller.h", 18 "translate_message_infobar_controller.h",
19 "translate_message_infobar_controller.mm", 19 "translate_message_infobar_controller.mm",
20 "translate_ranker_factory.cc",
21 "translate_ranker_factory.h",
22 "translate_ranker_metrics_provider.cc",
23 "translate_ranker_metrics_provider.h",
20 "translate_service_ios.cc", 24 "translate_service_ios.cc",
21 "translate_service_ios.h", 25 "translate_service_ios.h",
22 ] 26 ]
23 deps = [ 27 deps = [
24 "//base", 28 "//base",
25 "//components/infobars/core", 29 "//components/infobars/core",
26 "//components/keyed_service/core", 30 "//components/keyed_service/core",
27 "//components/keyed_service/ios", 31 "//components/keyed_service/ios",
32 "//components/metrics",
33 "//components/metrics/proto",
28 "//components/prefs", 34 "//components/prefs",
29 "//components/strings", 35 "//components/strings",
30 "//components/translate/core/browser", 36 "//components/translate/core/browser",
31 "//components/translate/core/common", 37 "//components/translate/core/common",
32 "//components/translate/ios/browser", 38 "//components/translate/ios/browser",
33 "//components/web_resource", 39 "//components/web_resource",
34 "//ios/chrome/app/strings", 40 "//ios/chrome/app/strings",
35 "//ios/chrome/app/theme", 41 "//ios/chrome/app/theme",
36 "//ios/chrome/browser", 42 "//ios/chrome/browser",
37 "//ios/chrome/browser/browser_state", 43 "//ios/chrome/browser/browser_state",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 "//ios/chrome/test/app:test_support", 89 "//ios/chrome/test/app:test_support",
84 "//ios/chrome/test/earl_grey:test_support", 90 "//ios/chrome/test/earl_grey:test_support",
85 "//ios/testing:ios_test_support", 91 "//ios/testing:ios_test_support",
86 "//ios/third_party/earl_grey", 92 "//ios/third_party/earl_grey",
87 "//ios/web:test_support", 93 "//ios/web:test_support",
88 "//net", 94 "//net",
89 "//ui/base", 95 "//ui/base",
90 ] 96 ]
91 libs = [ "XCTest.framework" ] 97 libs = [ "XCTest.framework" ]
92 } 98 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698