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

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

Issue 2443373002: Split //ios/chrome/browser in multiple targets. (Closed)
Patch Set: Rebase Created 4 years, 1 month 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 | « ios/chrome/browser/sync/sessions/BUILD.gn ('k') | ios/chrome/browser/ui/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("translate") {
6 sources = [
7 "after_translate_infobar_controller.h",
8 "after_translate_infobar_controller.mm",
9 "before_translate_infobar_controller.h",
10 "before_translate_infobar_controller.mm",
11 "chrome_ios_translate_client.h",
12 "chrome_ios_translate_client.mm",
13 "never_translate_infobar_controller.h",
14 "never_translate_infobar_controller.mm",
15 "translate_accept_languages_factory.cc",
16 "translate_accept_languages_factory.h",
17 "translate_infobar_tags.h",
18 "translate_message_infobar_controller.h",
19 "translate_message_infobar_controller.mm",
20 "translate_service_ios.cc",
21 "translate_service_ios.h",
22 ]
23 deps = [
24 "//base",
25 "//components/infobars/core",
26 "//components/keyed_service/core",
27 "//components/keyed_service/ios",
28 "//components/prefs",
29 "//components/strings",
30 "//components/translate/core/browser",
31 "//components/translate/core/common",
32 "//components/translate/ios/browser",
33 "//components/web_resource",
34 "//ios/chrome/app/strings",
35 "//ios/chrome/app/theme",
36 "//ios/chrome/browser:browser_no_public_deps",
37 "//ios/chrome/browser/browser_state",
38 "//ios/chrome/browser/infobars",
39 "//ios/public/provider/chrome/browser",
40 "//ios/web",
41 "//ui/base",
42 "//ui/gfx",
43 "//url",
44 ]
45 allow_circular_includes_from = [ "//ios/chrome/browser/infobars" ]
46 }
47
48 source_set("unit_tests") {
49 testonly = true
50 sources = [
51 "translate_service_ios_unittest.cc",
52 ]
53 deps = [
54 ":translate",
55 "//ios/chrome/browser",
56 "//ios/public/provider/chrome/browser:test_support",
57 "//testing/gtest",
58 "//url",
59 ]
60 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/sync/sessions/BUILD.gn ('k') | ios/chrome/browser/ui/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698