| 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", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 source_set("toolbar_ui") { | 31 source_set("toolbar_ui") { |
| 32 sources = [ | 32 sources = [ |
| 33 "toolbar_consumer.h", | 33 "toolbar_consumer.h", |
| 34 "toolbar_view_controller.h", | 34 "toolbar_view_controller.h", |
| 35 "toolbar_view_controller.mm", | 35 "toolbar_view_controller.mm", |
| 36 ] | 36 ] |
| 37 deps = [ | 37 deps = [ |
| 38 ":toolbar_components_ui", | 38 ":toolbar_components_ui", |
| 39 "//base", | 39 "//base", |
| 40 "//ios/chrome/browser/ui", | 40 "//ios/chrome/browser/ui", |
| 41 "//ios/clean/chrome/browser/ui/actions", | |
| 42 "//ios/clean/chrome/browser/ui/animators", | 41 "//ios/clean/chrome/browser/ui/animators", |
| 43 "//ios/clean/chrome/browser/ui/commands", | 42 "//ios/clean/chrome/browser/ui/commands", |
| 44 "//ios/clean/chrome/browser/ui/tools", | 43 "//ios/clean/chrome/browser/ui/tools", |
| 45 "//ios/third_party/material_components_ios", | 44 "//ios/third_party/material_components_ios", |
| 46 ] | 45 ] |
| 47 libs = [ "UIKit.framework" ] | 46 libs = [ "UIKit.framework" ] |
| 48 configs += [ "//build/config/compiler:enable_arc" ] | 47 configs += [ "//build/config/compiler:enable_arc" ] |
| 49 } | 48 } |
| 50 | 49 |
| 51 source_set("toolbar_components_ui") { | 50 source_set("toolbar_components_ui") { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 81 "//ios/chrome/browser/web_state_list", | 80 "//ios/chrome/browser/web_state_list", |
| 82 "//ios/chrome/browser/web_state_list:test_support", | 81 "//ios/chrome/browser/web_state_list:test_support", |
| 83 "//ios/shared/chrome/browser/ui/toolbar:test_support", | 82 "//ios/shared/chrome/browser/ui/toolbar:test_support", |
| 84 "//ios/web", | 83 "//ios/web", |
| 85 "//ios/web/public/test/fakes", | 84 "//ios/web/public/test/fakes", |
| 86 "//testing/gtest", | 85 "//testing/gtest", |
| 87 "//third_party/ocmock", | 86 "//third_party/ocmock", |
| 88 ] | 87 ] |
| 89 configs += [ "//build/config/compiler:enable_arc" ] | 88 configs += [ "//build/config/compiler:enable_arc" ] |
| 90 } | 89 } |
| OLD | NEW |