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

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

Issue 2943343003: implement ios for translate event. (Closed)
Patch Set: apply switch as well Created 3 years, 6 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",
(...skipping 17 matching lines...) Expand all
28 ] 28 ]
29 deps = [ 29 deps = [
30 "//base", 30 "//base",
31 "//components/infobars/core", 31 "//components/infobars/core",
32 "//components/keyed_service/core", 32 "//components/keyed_service/core",
33 "//components/keyed_service/ios", 33 "//components/keyed_service/ios",
34 "//components/metrics", 34 "//components/metrics",
35 "//components/metrics/proto", 35 "//components/metrics/proto",
36 "//components/prefs", 36 "//components/prefs",
37 "//components/strings", 37 "//components/strings",
38 "//components/sync",
38 "//components/translate/core/browser", 39 "//components/translate/core/browser",
39 "//components/translate/core/common", 40 "//components/translate/core/common",
40 "//components/translate/ios/browser", 41 "//components/translate/ios/browser",
41 "//components/web_resource", 42 "//components/web_resource",
42 "//ios/chrome/app/strings", 43 "//ios/chrome/app/strings",
43 "//ios/chrome/app/theme", 44 "//ios/chrome/app/theme",
44 "//ios/chrome/browser", 45 "//ios/chrome/browser",
45 "//ios/chrome/browser/browser_state", 46 "//ios/chrome/browser/browser_state",
46 "//ios/chrome/browser/infobars", 47 "//ios/chrome/browser/infobars",
48 "//ios/chrome/browser/sync",
47 "//ios/chrome/browser/ui/infobars", 49 "//ios/chrome/browser/ui/infobars",
48 "//ios/web", 50 "//ios/web",
49 "//ui/base", 51 "//ui/base",
50 "//ui/gfx", 52 "//ui/gfx",
51 "//url", 53 "//url",
52 ] 54 ]
53 55
54 allow_circular_includes_from = [ "//ios/chrome/browser/infobars" ] 56 allow_circular_includes_from = [ "//ios/chrome/browser/infobars" ]
55 } 57 }
56 58
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "//ios/chrome/test/earl_grey:test_support", 105 "//ios/chrome/test/earl_grey:test_support",
104 "//ios/testing:ios_test_support", 106 "//ios/testing:ios_test_support",
105 "//ios/third_party/earl_grey", 107 "//ios/third_party/earl_grey",
106 "//ios/web/public/test", 108 "//ios/web/public/test",
107 "//ios/web/public/test/http_server", 109 "//ios/web/public/test/http_server",
108 "//net", 110 "//net",
109 "//ui/base", 111 "//ui/base",
110 ] 112 ]
111 libs = [ "XCTest.framework" ] 113 libs = [ "XCTest.framework" ]
112 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698