| 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 bundle_data("resources") { | 5 bundle_data("resources") { |
| 6 sources = [ | 6 sources = [ |
| 7 "resources/side_swipe_navigation_back.png", | 7 "resources/side_swipe_navigation_back.png", |
| 8 "resources/side_swipe_navigation_back@2x.png", | 8 "resources/side_swipe_navigation_back@2x.png", |
| 9 "resources/side_swipe_navigation_back@3x.png", | 9 "resources/side_swipe_navigation_back@3x.png", |
| 10 "resources/side_swipe_navigation_content_shadow.png", | 10 "resources/side_swipe_navigation_content_shadow.png", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "history_side_swipe_provider.h", | 23 "history_side_swipe_provider.h", |
| 24 "history_side_swipe_provider.mm", | 24 "history_side_swipe_provider.mm", |
| 25 "side_swipe_controller.h", | 25 "side_swipe_controller.h", |
| 26 "side_swipe_controller.mm", | 26 "side_swipe_controller.mm", |
| 27 "side_swipe_navigation_view.h", | 27 "side_swipe_navigation_view.h", |
| 28 "side_swipe_navigation_view.mm", | 28 "side_swipe_navigation_view.mm", |
| 29 "side_swipe_util.h", | 29 "side_swipe_util.h", |
| 30 "side_swipe_util.mm", | 30 "side_swipe_util.mm", |
| 31 ] | 31 ] |
| 32 deps = [ | 32 deps = [ |
| 33 ":resources", |
| 33 "//base", | 34 "//base", |
| 34 "//components/reading_list/core", | 35 "//components/reading_list/core", |
| 35 "//components/reading_list/ios", | 36 "//components/reading_list/ios", |
| 36 "//ios/chrome/app/theme", | 37 "//ios/chrome/app/theme", |
| 37 "//ios/chrome/browser", | 38 "//ios/chrome/browser", |
| 38 "//ios/chrome/browser/browser_state", | 39 "//ios/chrome/browser/browser_state", |
| 39 "//ios/chrome/browser/reading_list", | 40 "//ios/chrome/browser/reading_list", |
| 40 "//ios/chrome/browser/snapshots", | 41 "//ios/chrome/browser/snapshots", |
| 41 "//ios/chrome/browser/tabs", | 42 "//ios/chrome/browser/tabs", |
| 42 "//ios/chrome/browser/ui", | 43 "//ios/chrome/browser/ui", |
| 43 "//ios/chrome/browser/ui/ntp", | 44 "//ios/chrome/browser/ui/ntp", |
| 44 "//ios/chrome/browser/ui/side_swipe:resources", | |
| 45 "//ios/chrome/browser/ui/tabs", | 45 "//ios/chrome/browser/ui/tabs", |
| 46 "//ios/chrome/common", | 46 "//ios/chrome/common", |
| 47 "//ios/web", | 47 "//ios/web", |
| 48 "//ui/base", | 48 "//ui/base", |
| 49 "//url", | 49 "//url", |
| 50 ] | 50 ] |
| 51 public_deps = [ | 51 public_deps = [ |
| 52 "//ios/chrome/browser/infobars", | 52 "//ios/chrome/browser/infobars", |
| 53 ] | 53 ] |
| 54 libs = [ "UIKit.framework" ] | 54 libs = [ "UIKit.framework" ] |
| 55 } | 55 } |
| 56 | 56 |
| 57 source_set("unit_tests") { | 57 source_set("unit_tests") { |
| 58 testonly = true | 58 testonly = true |
| 59 sources = [ | 59 sources = [ |
| 60 "side_swipe_controller_unittest.mm", | 60 "side_swipe_controller_unittest.mm", |
| 61 ] | 61 ] |
| 62 deps = [ | 62 deps = [ |
| 63 ":side_swipe", | 63 ":side_swipe", |
| 64 "//base", | 64 "//base", |
| 65 "//ios/chrome/browser/browser_state:test_support", | 65 "//ios/chrome/browser/browser_state:test_support", |
| 66 "//ios/chrome/browser/ui/toolbar", | 66 "//ios/chrome/browser/ui/toolbar", |
| 67 "//ios/web:test_support", | 67 "//ios/web:test_support", |
| 68 "//testing/gtest", | 68 "//testing/gtest", |
| 69 "//third_party/ocmock", | 69 "//third_party/ocmock", |
| 70 ] | 70 ] |
| 71 } | 71 } |
| OLD | NEW |