| OLD | NEW |
| 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 sources = [ | 6 sources = [ |
| 7 "confirm_infobar_controller+protected.h", | 7 "confirm_infobar_controller+protected.h", |
| 8 "confirm_infobar_controller.h", | 8 "confirm_infobar_controller.h", |
| 9 "confirm_infobar_controller.mm", | 9 "confirm_infobar_controller.mm", |
| 10 "infobar.h", | 10 "infobar.h", |
| 11 "infobar.mm", | 11 "infobar.mm", |
| 12 "infobar_container_ios.h", | 12 "infobar_container_ios.h", |
| 13 "infobar_container_ios.mm", | 13 "infobar_container_ios.mm", |
| 14 "infobar_container_view.h", | 14 "infobar_container_view.h", |
| 15 "infobar_container_view.mm", | 15 "infobar_container_view.mm", |
| 16 "infobar_controller.h", | 16 "infobar_controller.h", |
| 17 "infobar_controller.mm", | 17 "infobar_controller.mm", |
| 18 "infobar_manager_impl.h", | 18 "infobar_manager_impl.h", |
| 19 "infobar_manager_impl.mm", | 19 "infobar_manager_impl.mm", |
| 20 "infobar_utils.h", | 20 "infobar_utils.h", |
| 21 "infobar_utils.mm", | 21 "infobar_utils.mm", |
| 22 ] | 22 ] |
| 23 deps = [ | 23 deps = [ |
| 24 "//base", | 24 "//base", |
| 25 "//components/translate/core/browser", | 25 "//components/translate/core/browser", |
| 26 "//ios/public/provider/chrome/browser", | 26 "//ios/public/provider/chrome/browser", |
| 27 "//ios/public/provider/chrome/browser/ui", |
| 27 "//ios/web", | 28 "//ios/web", |
| 28 "//ui/base", | 29 "//ui/base", |
| 29 "//ui/gfx", | 30 "//ui/gfx", |
| 30 ] | 31 ] |
| 31 public_deps = [ | 32 public_deps = [ |
| 32 "//components/infobars/core", | 33 "//components/infobars/core", |
| 33 ] | 34 ] |
| 34 } | 35 } |
| OLD | NEW |