Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(662)

Side by Side Diff: ios/chrome/browser/ui/reading_list/BUILD.gn

Issue 2659693004: Add context menu when long press on a reading list entry (Closed)
Patch Set: Address comments Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/distillation_fail.png", 7 "resources/distillation_fail.png",
8 "resources/distillation_fail@2x.png", 8 "resources/distillation_fail@2x.png",
9 "resources/distillation_fail@3x.png", 9 "resources/distillation_fail@3x.png",
10 "resources/distillation_success.png", 10 "resources/distillation_success.png",
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 "//ios/chrome/browser/reading_list", 59 "//ios/chrome/browser/reading_list",
60 "//ios/chrome/browser/tabs", 60 "//ios/chrome/browser/tabs",
61 "//ios/chrome/browser/ui", 61 "//ios/chrome/browser/ui",
62 "//ios/chrome/browser/ui/alert_coordinator", 62 "//ios/chrome/browser/ui/alert_coordinator",
63 "//ios/chrome/browser/ui/collection_view/cells", 63 "//ios/chrome/browser/ui/collection_view/cells",
64 "//ios/chrome/browser/ui/colors", 64 "//ios/chrome/browser/ui/colors",
65 "//ios/chrome/browser/ui/keyboard", 65 "//ios/chrome/browser/ui/keyboard",
66 "//ios/chrome/browser/ui/material_components", 66 "//ios/chrome/browser/ui/material_components",
67 "//ios/chrome/browser/ui/side_swipe", 67 "//ios/chrome/browser/ui/side_swipe",
68 "//ios/chrome/browser/ui/static_content", 68 "//ios/chrome/browser/ui/static_content",
69 "//ios/chrome/browser/ui/util",
69 "//ios/chrome/common", 70 "//ios/chrome/common",
70 "//ios/third_party/material_components_ios", 71 "//ios/third_party/material_components_ios",
71 "//ios/third_party/material_roboto_font_loader_ios", 72 "//ios/third_party/material_roboto_font_loader_ios",
72 "//ios/web", 73 "//ios/web",
73 "//net", 74 "//net",
74 "//ui/base", 75 "//ui/base",
76 "//ui/strings",
75 "//url", 77 "//url",
76 ] 78 ]
77 public_deps = [ 79 public_deps = [
78 "//components/reading_list/ios", 80 "//components/reading_list/ios",
79 "//ios/chrome/browser/ui/collection_view", 81 "//ios/chrome/browser/ui/collection_view",
80 ] 82 ]
81 allow_circular_includes_from = [ "//ios/chrome/browser/ui/side_swipe" ] 83 allow_circular_includes_from = [ "//ios/chrome/browser/ui/side_swipe" ]
82 libs = [ "UIKit.framework" ] 84 libs = [ "UIKit.framework" ]
83 } 85 }
84 86
85 source_set("unit_tests") { 87 source_set("unit_tests") {
86 testonly = true 88 testonly = true
87 sources = [ 89 sources = [
88 "offline_page_native_content_unittest.mm", 90 "offline_page_native_content_unittest.mm",
91 "reading_list_view_controller_container_unittest.mm",
89 "reading_list_view_controller_unittest.mm", 92 "reading_list_view_controller_unittest.mm",
90 ] 93 ]
91 deps = [ 94 deps = [
92 ":reading_list", 95 ":reading_list",
93 "//base", 96 "//base",
94 "//components/favicon/core", 97 "//components/favicon/core",
95 "//components/prefs", 98 "//components/prefs",
96 "//components/reading_list/ios", 99 "//components/reading_list/ios",
97 "//ios/chrome/browser/browser_state:test_support", 100 "//ios/chrome/browser/browser_state:test_support",
98 "//ios/chrome/browser/favicon", 101 "//ios/chrome/browser/favicon",
99 "//ios/chrome/browser/reading_list", 102 "//ios/chrome/browser/reading_list",
100 "//ios/chrome/browser/tabs", 103 "//ios/chrome/browser/tabs",
101 "//ios/chrome/browser/ui", 104 "//ios/chrome/browser/ui",
102 "//ios/chrome/browser/ui/static_content", 105 "//ios/chrome/browser/ui/static_content",
103 "//ios/web", 106 "//ios/web",
104 "//ios/web:test_support", 107 "//ios/web:test_support",
105 "//testing/gtest", 108 "//testing/gtest",
106 "//third_party/ocmock", 109 "//third_party/ocmock",
110 "//ui/base",
107 ] 111 ]
108 } 112 }
109 113
110 source_set("eg_tests") { 114 source_set("eg_tests") {
111 testonly = true 115 testonly = true
112 sources = [ 116 sources = [
113 "reading_list_egtest.mm", 117 "reading_list_egtest.mm",
114 ] 118 ]
115 deps = [ 119 deps = [
116 ":reading_list", 120 ":reading_list",
117 "//base", 121 "//base",
118 "//components/reading_list/ios", 122 "//components/reading_list/ios",
119 "//ios/chrome/app/strings", 123 "//ios/chrome/app/strings",
120 "//ios/chrome/browser/reading_list", 124 "//ios/chrome/browser/reading_list",
121 "//ios/chrome/browser/ui/commands", 125 "//ios/chrome/browser/ui/commands",
122 "//ios/chrome/test/app:test_support", 126 "//ios/chrome/test/app:test_support",
123 "//ios/chrome/test/earl_grey:test_support", 127 "//ios/chrome/test/earl_grey:test_support",
124 "//ios/testing:ios_test_support", 128 "//ios/testing:ios_test_support",
125 "//ios/third_party/earl_grey", 129 "//ios/third_party/earl_grey",
126 "//ios/third_party/material_components_ios", 130 "//ios/third_party/material_components_ios",
127 "//ios/web:test_support", 131 "//ios/web:test_support",
128 ] 132 ]
129 libs = [ 133 libs = [
130 "UIKit.framework", 134 "UIKit.framework",
131 "XCTest.framework", 135 "XCTest.framework",
132 ] 136 ]
133 } 137 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698