| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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("root") { | 5 source_set("root") { |
| 6 sources = [ | 6 sources = [ |
| 7 "root_coordinator.h", | 7 "root_coordinator.h", |
| 8 "root_coordinator.mm", | 8 "root_coordinator.mm", |
| 9 ] | 9 ] |
| 10 deps = [ | 10 deps = [ |
| 11 ":root_ui", | 11 ":root_ui", |
| 12 "//ios/clean/chrome/browser", | 12 "//ios/clean/chrome/browser", |
| 13 "//ios/clean/chrome/browser/ui/commands", | 13 "//ios/clean/chrome/browser/ui/commands", |
| 14 "//ios/clean/chrome/browser/ui/tab_grid", | 14 "//ios/clean/chrome/browser/ui/tab_grid", |
| 15 "//ios/shared/chrome/browser/ui/browser_list", | 15 "//ios/shared/chrome/browser/ui/browser_list", |
| 16 "//ios/shared/chrome/browser/ui/commands", | 16 "//ios/shared/chrome/browser/ui/commands", |
| 17 "//ios/shared/chrome/browser/ui/coordinators", | 17 "//ios/shared/chrome/browser/ui/coordinators", |
| 18 ] | 18 ] |
| 19 configs += [ "//build/config/compiler:enable_arc" ] | 19 configs += [ "//build/config/compiler:enable_arc" ] |
| 20 } | 20 } |
| 21 | 21 |
| 22 source_set("root_ui") { | 22 source_set("root_ui") { |
| 23 sources = [ | 23 sources = [ |
| 24 "root_container_view_controller.h", | 24 "root_container_view_controller.h", |
| 25 "root_container_view_controller.mm", | 25 "root_container_view_controller.mm", |
| 26 ] | 26 ] |
| 27 deps = [ | 27 deps = [ |
| 28 "//base", | 28 "//base", |
| 29 "//ios/clean/chrome/browser/ui/animators", | 29 "//ios/clean/chrome/browser/ui/transitions/animators", |
| 30 "//ios/clean/chrome/browser/ui/presenters", | 30 "//ios/clean/chrome/browser/ui/transitions/presenters", |
| 31 ] | 31 ] |
| 32 configs += [ "//build/config/compiler:enable_arc" ] | 32 configs += [ "//build/config/compiler:enable_arc" ] |
| 33 } | 33 } |
| 34 | 34 |
| 35 source_set("unit_tests") { | 35 source_set("unit_tests") { |
| 36 sources = [ | 36 sources = [ |
| 37 "root_container_view_controller_unittest.mm", | 37 "root_container_view_controller_unittest.mm", |
| 38 "root_coordinator_unittest.mm", | 38 "root_coordinator_unittest.mm", |
| 39 ] | 39 ] |
| 40 deps = [ | 40 deps = [ |
| 41 ":root", | 41 ":root", |
| 42 ":root_ui", | 42 ":root_ui", |
| 43 "//base", | 43 "//base", |
| 44 "//ios/clean/chrome/browser", | 44 "//ios/clean/chrome/browser", |
| 45 "//ios/clean/chrome/browser/ui/animators", | 45 "//ios/clean/chrome/browser/ui/transitions/animators", |
| 46 "//testing/gtest", | 46 "//testing/gtest", |
| 47 "//third_party/ocmock", | 47 "//third_party/ocmock", |
| 48 ] | 48 ] |
| 49 configs += [ "//build/config/compiler:enable_arc" ] | 49 configs += [ "//build/config/compiler:enable_arc" ] |
| 50 testonly = true | 50 testonly = true |
| 51 } | 51 } |
| OLD | NEW |