| 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", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 54 |
| 55 configs += [ "//build/config/compiler:enable_arc" ] | 55 configs += [ "//build/config/compiler:enable_arc" ] |
| 56 | 56 |
| 57 deps = [ | 57 deps = [ |
| 58 "//base", | 58 "//base", |
| 59 "//ios/chrome/app/strings", | 59 "//ios/chrome/app/strings", |
| 60 "//ios/chrome/browser/ui", | 60 "//ios/chrome/browser/ui", |
| 61 "//ios/chrome/browser/ui/colors", | 61 "//ios/chrome/browser/ui/colors", |
| 62 "//ios/chrome/browser/ui/tab_switcher", | 62 "//ios/chrome/browser/ui/tab_switcher", |
| 63 "//ios/clean/chrome/browser/ui/actions", | 63 "//ios/clean/chrome/browser/ui/actions", |
| 64 "//ios/clean/chrome/browser/ui/animators", | |
| 65 "//ios/clean/chrome/browser/ui/commands", | 64 "//ios/clean/chrome/browser/ui/commands", |
| 66 "//ios/clean/chrome/browser/ui/tab_collection:tab_collection_ui", | 65 "//ios/clean/chrome/browser/ui/tab_collection:tab_collection_ui", |
| 66 "//ios/clean/chrome/browser/ui/transitions/animators", |
| 67 "//ios/third_party/material_components_ios:material_components_ios", | 67 "//ios/third_party/material_components_ios:material_components_ios", |
| 68 "//ui/base", | 68 "//ui/base", |
| 69 ] | 69 ] |
| 70 } | 70 } |
| 71 | 71 |
| 72 source_set("unit_tests") { | 72 source_set("unit_tests") { |
| 73 testonly = true | 73 testonly = true |
| 74 | 74 |
| 75 sources = [ | 75 sources = [ |
| 76 "tab_grid_mediator_unittest.mm", | 76 "tab_grid_mediator_unittest.mm", |
| 77 ] | 77 ] |
| 78 | 78 |
| 79 configs += [ "//build/config/compiler:enable_arc" ] | 79 configs += [ "//build/config/compiler:enable_arc" ] |
| 80 | 80 |
| 81 deps = [ | 81 deps = [ |
| 82 ":tab_grid", | 82 ":tab_grid", |
| 83 ":tab_grid_ui", | 83 ":tab_grid_ui", |
| 84 "//base", | 84 "//base", |
| 85 "//base/test:test_support", | 85 "//base/test:test_support", |
| 86 "//ios/chrome/browser/web_state_list", | 86 "//ios/chrome/browser/web_state_list", |
| 87 "//ios/chrome/browser/web_state_list:test_support", | 87 "//ios/chrome/browser/web_state_list:test_support", |
| 88 "//ios/chrome/test/base", | 88 "//ios/chrome/test/base", |
| 89 "//ios/web/public/test/fakes", | 89 "//ios/web/public/test/fakes", |
| 90 "//testing/gtest", | 90 "//testing/gtest", |
| 91 "//third_party/ocmock", | 91 "//third_party/ocmock", |
| 92 ] | 92 ] |
| 93 } | 93 } |
| OLD | NEW |