| 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", | 9 "toolbar_mediator.h", |
| 10 "toolbar_mediator.mm", | 10 "toolbar_mediator.mm", |
| 11 ] | 11 ] |
| 12 | 12 |
| 13 configs += [ "//build/config/compiler:enable_arc" ] | 13 configs += [ "//build/config/compiler:enable_arc" ] |
| 14 | 14 |
| 15 deps = [ | 15 deps = [ |
| 16 ":toolbar_ui", | 16 ":toolbar_ui", |
| 17 "//base", | 17 "//base", |
| 18 "//ios/clean/chrome/browser/ui/commands", | 18 "//ios/clean/chrome/browser/ui/commands", |
| 19 "//ios/clean/chrome/browser/ui/omnibox", |
| 19 "//ios/clean/chrome/browser/ui/tools", | 20 "//ios/clean/chrome/browser/ui/tools", |
| 20 "//ios/shared/chrome/browser/coordinator_context", | 21 "//ios/shared/chrome/browser/coordinator_context", |
| 21 "//ios/shared/chrome/browser/ui/browser_list", | 22 "//ios/shared/chrome/browser/ui/browser_list", |
| 22 "//ios/shared/chrome/browser/ui/commands", | 23 "//ios/shared/chrome/browser/ui/commands", |
| 23 "//ios/shared/chrome/browser/ui/coordinators", | 24 "//ios/shared/chrome/browser/ui/coordinators", |
| 24 "//ios/web", | 25 "//ios/web", |
| 25 ] | 26 ] |
| 26 } | 27 } |
| 27 | 28 |
| 28 source_set("toolbar_ui") { | 29 source_set("toolbar_ui") { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 52 "toolbar_component_options.h", | 53 "toolbar_component_options.h", |
| 53 ] | 54 ] |
| 54 deps = [ | 55 deps = [ |
| 55 "//base", | 56 "//base", |
| 56 "//ios/chrome/app/theme", | 57 "//ios/chrome/app/theme", |
| 57 "//ios/chrome/browser/ui", | 58 "//ios/chrome/browser/ui", |
| 58 ] | 59 ] |
| 59 libs = [ "UIKit.framework" ] | 60 libs = [ "UIKit.framework" ] |
| 60 configs += [ "//build/config/compiler:enable_arc" ] | 61 configs += [ "//build/config/compiler:enable_arc" ] |
| 61 } | 62 } |
| OLD | NEW |