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

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

Issue 2596813002: Remove ChromeBrowserProvider::CreateInfoBarView() method. (Closed)
Patch Set: Created 3 years, 12 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("infobars") { 5 source_set("infobars") {
6 configs += [ "//build/config/compiler:enable_arc" ] 6 configs += [ "//build/config/compiler:enable_arc" ]
7 sources = [ 7 sources = [
8 "confirm_infobar_controller+protected.h", 8 "confirm_infobar_controller+protected.h",
9 "confirm_infobar_controller.h", 9 "confirm_infobar_controller.h",
10 "confirm_infobar_controller.mm", 10 "confirm_infobar_controller.mm",
11 "infobar.h", 11 "infobar.h",
12 "infobar.mm", 12 "infobar.mm",
13 "infobar_container_ios.h", 13 "infobar_container_ios.h",
14 "infobar_container_ios.mm", 14 "infobar_container_ios.mm",
15 "infobar_container_view.h", 15 "infobar_container_view.h",
16 "infobar_container_view.mm", 16 "infobar_container_view.mm",
17 "infobar_controller.h", 17 "infobar_controller.h",
18 "infobar_controller.mm", 18 "infobar_controller.mm",
19 "infobar_manager_impl.h", 19 "infobar_manager_impl.h",
20 "infobar_manager_impl.mm", 20 "infobar_manager_impl.mm",
21 "infobar_utils.h", 21 "infobar_utils.h",
22 "infobar_utils.mm", 22 "infobar_utils.mm",
23 ] 23 ]
24 deps = [ 24 deps = [
25 "//base", 25 "//base",
26 "//components/translate/core/browser", 26 "//components/translate/core/browser",
27 "//ios/chrome/browser/ui/infobars",
27 "//ios/public/provider/chrome/browser", 28 "//ios/public/provider/chrome/browser",
28 "//ios/public/provider/chrome/browser/ui",
29 "//ios/web", 29 "//ios/web",
30 "//ui/base", 30 "//ui/base",
31 "//ui/gfx", 31 "//ui/gfx",
32 ] 32 ]
33 public_deps = [ 33 public_deps = [
34 "//components/infobars/core", 34 "//components/infobars/core",
35 ] 35 ]
36 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698