| 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("main") { | 5 source_set("main") { |
| 6 sources = [ | 6 sources = [ |
| 7 "browser_view_information.h", | 7 "browser_view_information.h", |
| 8 "browser_view_wrangler.h", | 8 "browser_view_wrangler.h", |
| 9 "browser_view_wrangler.mm", | 9 "browser_view_wrangler.mm", |
| 10 "main_coordinator.h", | 10 "main_coordinator.h", |
| 11 "main_coordinator.mm", | 11 "main_coordinator.mm", |
| 12 "main_view_controller.h", | 12 "main_view_controller.h", |
| 13 "main_view_controller.mm", | 13 "main_view_controller.mm", |
| 14 ] | 14 ] |
| 15 deps = [ | 15 deps = [ |
| 16 "//base", | 16 "//base", |
| 17 "//ios/chrome/browser", | 17 "//ios/chrome/browser", |
| 18 "//ios/chrome/browser/browser_state", | 18 "//ios/chrome/browser/browser_state", |
| 19 "//ios/chrome/browser/browsing_data", | 19 "//ios/chrome/browser/browsing_data", |
| 20 "//ios/chrome/browser/browsing_data:browsing_data_internal", | 20 "//ios/chrome/browser/browsing_data:browsing_data_internal", |
| 21 "//ios/chrome/browser/crash_report:crash_report_internal", | 21 "//ios/chrome/browser/crash_report:crash_report_internal", |
| 22 "//ios/chrome/browser/device_sharing", | 22 "//ios/chrome/browser/device_sharing", |
| 23 "//ios/chrome/browser/physical_web", | 23 "//ios/chrome/browser/physical_web", |
| 24 "//ios/chrome/browser/sessions", | 24 "//ios/chrome/browser/sessions", |
| 25 "//ios/chrome/browser/sessions:serialisation", |
| 25 "//ios/chrome/browser/tabs", | 26 "//ios/chrome/browser/tabs", |
| 26 "//ios/chrome/browser/tabs:tabs_internal", | 27 "//ios/chrome/browser/tabs:tabs_internal", |
| 27 "//ios/public/provider/chrome/browser", | 28 "//ios/public/provider/chrome/browser", |
| 28 ] | 29 ] |
| 29 public_deps = [ | 30 public_deps = [ |
| 30 "//ios/chrome/browser/ui:ui_internal", | 31 "//ios/chrome/browser/ui:ui_internal", |
| 31 ] | 32 ] |
| 32 libs = [ "UIKit.framework" ] | 33 libs = [ "UIKit.framework" ] |
| 33 } | 34 } |
| 34 | 35 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 45 "//base", | 46 "//base", |
| 46 "//components/bookmarks/test", | 47 "//components/bookmarks/test", |
| 47 "//ios/chrome/browser/bookmarks", | 48 "//ios/chrome/browser/bookmarks", |
| 48 "//ios/chrome/browser/browser_state:test_support", | 49 "//ios/chrome/browser/browser_state:test_support", |
| 49 "//ios/chrome/browser/tabs", | 50 "//ios/chrome/browser/tabs", |
| 50 "//ios/chrome/browser/ui:ui_internal", | 51 "//ios/chrome/browser/ui:ui_internal", |
| 51 "//ios/web:test_support", | 52 "//ios/web:test_support", |
| 52 "//testing/gtest", | 53 "//testing/gtest", |
| 53 ] | 54 ] |
| 54 } | 55 } |
| OLD | NEW |