| 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("toolbar") { | 5 source_set("toolbar") { |
| 6 sources = [ | 6 sources = [ |
| 7 "toolbar_coordinator.h", | 7 "toolbar_coordinator.h", |
| 8 "toolbar_coordinator.mm", | 8 "toolbar_coordinator.mm", |
| 9 "toolbar_mediator.h", |
| 10 "toolbar_mediator.mm", |
| 9 ] | 11 ] |
| 10 | 12 |
| 11 configs += [ "//build/config/compiler:enable_arc" ] | 13 configs += [ "//build/config/compiler:enable_arc" ] |
| 12 | 14 |
| 13 deps = [ | 15 deps = [ |
| 14 ":toolbar_ui", | 16 ":toolbar_ui", |
| 15 "//base", | 17 "//base", |
| 16 "//ios/clean/chrome/browser", | 18 "//ios/clean/chrome/browser", |
| 17 "//ios/clean/chrome/browser/ui/commands", | 19 "//ios/clean/chrome/browser/ui/commands", |
| 18 "//ios/clean/chrome/browser/ui/tools", | 20 "//ios/clean/chrome/browser/ui/tools", |
| 19 "//ios/shared/chrome/browser/coordinator_context", | 21 "//ios/shared/chrome/browser/coordinator_context", |
| 20 "//ios/web", | 22 "//ios/web", |
| 21 ] | 23 ] |
| 22 } | 24 } |
| 23 | 25 |
| 24 source_set("toolbar_ui") { | 26 source_set("toolbar_ui") { |
| 25 sources = [ | 27 sources = [ |
| 28 "toolbar_consumer.h", |
| 26 "toolbar_view_controller.h", | 29 "toolbar_view_controller.h", |
| 27 "toolbar_view_controller.mm", | 30 "toolbar_view_controller.mm", |
| 28 ] | 31 ] |
| 29 deps = [ | 32 deps = [ |
| 30 ":toolbar_components_ui", | 33 ":toolbar_components_ui", |
| 31 "//base", | 34 "//base", |
| 32 "//ios/clean/chrome/browser/ui/actions", | 35 "//ios/clean/chrome/browser/ui/actions", |
| 33 "//ios/clean/chrome/browser/ui/animators", | 36 "//ios/clean/chrome/browser/ui/animators", |
| 34 "//ios/clean/chrome/browser/ui/commands", | 37 "//ios/clean/chrome/browser/ui/commands", |
| 35 "//ios/clean/chrome/browser/ui/tools", | 38 "//ios/clean/chrome/browser/ui/tools", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 47 "toolbar_component_options.h", | 50 "toolbar_component_options.h", |
| 48 ] | 51 ] |
| 49 deps = [ | 52 deps = [ |
| 50 "//base", | 53 "//base", |
| 51 "//ios/chrome/app/theme", | 54 "//ios/chrome/app/theme", |
| 52 "//ios/chrome/browser/ui", | 55 "//ios/chrome/browser/ui", |
| 53 ] | 56 ] |
| 54 libs = [ "UIKit.framework" ] | 57 libs = [ "UIKit.framework" ] |
| 55 configs += [ "//build/config/compiler:enable_arc" ] | 58 configs += [ "//build/config/compiler:enable_arc" ] |
| 56 } | 59 } |
| OLD | NEW |