| 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("tab_grid") { | 5 source_set("tab_grid") { |
| 6 sources = [ | 6 sources = [ |
| 7 "tab_grid_coordinator.h", | 7 "tab_grid_coordinator.h", |
| 8 "tab_grid_coordinator.mm", | 8 "tab_grid_coordinator.mm", |
| 9 "tab_grid_mediator.h", | 9 "tab_grid_mediator.h", |
| 10 "tab_grid_mediator.mm", | 10 "tab_grid_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 ":tab_grid_ui", | 16 ":tab_grid_ui", |
| 17 "//base", | 17 "//base", |
| 18 "//ios/chrome/browser/browser_state", | 18 "//ios/chrome/browser/browser_state", |
| 19 "//ios/chrome/browser/web_state_list", | 19 "//ios/chrome/browser/web_state_list", |
| 20 "//ios/clean/chrome/browser", | 20 "//ios/clean/chrome/browser", |
| 21 "//ios/clean/chrome/browser/ui/commands", | 21 "//ios/clean/chrome/browser/ui/commands", |
| 22 "//ios/clean/chrome/browser/ui/settings", | 22 "//ios/clean/chrome/browser/ui/settings", |
| 23 "//ios/clean/chrome/browser/ui/tab", | 23 "//ios/clean/chrome/browser/ui/tab", |
| 24 "//ios/clean/chrome/browser/ui/tab_collection", | 24 "//ios/clean/chrome/browser/ui/tab_collection", |
| 25 "//ios/clean/chrome/browser/ui/tab_collection:tab_collection_ui", | 25 "//ios/clean/chrome/browser/ui/tab_collection:tab_collection_ui", |
| 26 "//ios/clean/chrome/browser/ui/tools", |
| 26 "//ios/shared/chrome/browser/ui/browser_list", | 27 "//ios/shared/chrome/browser/ui/browser_list", |
| 27 "//ios/shared/chrome/browser/ui/commands", | 28 "//ios/shared/chrome/browser/ui/commands", |
| 28 "//ios/shared/chrome/browser/ui/coordinators", | 29 "//ios/shared/chrome/browser/ui/coordinators", |
| 29 "//ios/web", | 30 "//ios/web", |
| 30 "//net", | 31 "//net", |
| 31 "//ui/base", | 32 "//ui/base", |
| 32 ] | 33 ] |
| 33 } | 34 } |
| 34 | 35 |
| 35 source_set("tab_grid_ui") { | 36 source_set("tab_grid_ui") { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 53 | 54 |
| 54 deps = [ | 55 deps = [ |
| 55 "//base", | 56 "//base", |
| 56 "//ios/chrome/app/strings", | 57 "//ios/chrome/app/strings", |
| 57 "//ios/chrome/browser/ui", | 58 "//ios/chrome/browser/ui", |
| 58 "//ios/chrome/browser/ui/colors", | 59 "//ios/chrome/browser/ui/colors", |
| 59 "//ios/chrome/browser/ui/tab_switcher", | 60 "//ios/chrome/browser/ui/tab_switcher", |
| 60 "//ios/clean/chrome/browser/ui/actions", | 61 "//ios/clean/chrome/browser/ui/actions", |
| 61 "//ios/clean/chrome/browser/ui/animators", | 62 "//ios/clean/chrome/browser/ui/animators", |
| 62 "//ios/clean/chrome/browser/ui/commands", | 63 "//ios/clean/chrome/browser/ui/commands", |
| 64 "//ios/clean/chrome/browser/ui/presenters", |
| 63 "//ios/clean/chrome/browser/ui/tab_collection:tab_collection_ui", | 65 "//ios/clean/chrome/browser/ui/tab_collection:tab_collection_ui", |
| 64 "//ios/third_party/material_components_ios:material_components_ios", | 66 "//ios/third_party/material_components_ios:material_components_ios", |
| 65 "//ui/base", | 67 "//ui/base", |
| 66 ] | 68 ] |
| 67 } | 69 } |
| 68 | 70 |
| 69 source_set("unit_tests") { | 71 source_set("unit_tests") { |
| 70 testonly = true | 72 testonly = true |
| 71 | 73 |
| 72 sources = [ | 74 sources = [ |
| 73 "tab_grid_mediator_unittest.mm", | 75 "tab_grid_mediator_unittest.mm", |
| 74 ] | 76 ] |
| 75 | 77 |
| 76 configs += [ "//build/config/compiler:enable_arc" ] | 78 configs += [ "//build/config/compiler:enable_arc" ] |
| 77 | 79 |
| 78 deps = [ | 80 deps = [ |
| 79 ":tab_grid", | 81 ":tab_grid", |
| 80 ":tab_grid_ui", | 82 ":tab_grid_ui", |
| 81 "//base", | 83 "//base", |
| 82 "//base/test:test_support", | 84 "//base/test:test_support", |
| 83 "//ios/chrome/browser/web_state_list", | 85 "//ios/chrome/browser/web_state_list", |
| 84 "//ios/chrome/browser/web_state_list:test_support", | 86 "//ios/chrome/browser/web_state_list:test_support", |
| 85 "//ios/chrome/test/base", | 87 "//ios/chrome/test/base", |
| 86 "//ios/web:test_support", | 88 "//ios/web:test_support", |
| 87 "//testing/gtest", | 89 "//testing/gtest", |
| 88 "//third_party/ocmock", | 90 "//third_party/ocmock", |
| 89 ] | 91 ] |
| 90 } | 92 } |
| OLD | NEW |