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

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

Issue 2610863002: Fix deps in all BUILD.gn files in ios. (Closed)
Patch Set: Created 3 years, 11 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/tabswitcher_full_history.png", 7 "resources/tabswitcher_full_history.png",
8 "resources/tabswitcher_full_history@2x.png", 8 "resources/tabswitcher_full_history@2x.png",
9 "resources/tabswitcher_full_history@3x.png", 9 "resources/tabswitcher_full_history@3x.png",
10 "resources/tabswitcher_incognito.png", 10 "resources/tabswitcher_incognito.png",
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 "tab_switcher_session_cell_data.h", 82 "tab_switcher_session_cell_data.h",
83 "tab_switcher_session_cell_data.mm", 83 "tab_switcher_session_cell_data.mm",
84 "tab_switcher_tab_strip_placeholder_view.h", 84 "tab_switcher_tab_strip_placeholder_view.h",
85 "tab_switcher_tab_strip_placeholder_view.mm", 85 "tab_switcher_tab_strip_placeholder_view.mm",
86 "tab_switcher_transition_context.h", 86 "tab_switcher_transition_context.h",
87 "tab_switcher_transition_context.mm", 87 "tab_switcher_transition_context.mm",
88 "tab_switcher_view.h", 88 "tab_switcher_view.h",
89 "tab_switcher_view.mm", 89 "tab_switcher_view.mm",
90 ] 90 ]
91 deps = [ 91 deps = [
92 ":resources",
92 ":utils", 93 ":utils",
93 "//base", 94 "//base",
94 "//components/browser_sync", 95 "//components/browser_sync",
95 "//components/sessions", 96 "//components/sessions",
96 "//components/signin/core/browser", 97 "//components/signin/core/browser",
97 "//components/sync", 98 "//components/sync",
98 "//components/sync_sessions", 99 "//components/sync_sessions",
99 "//ios/chrome/app/strings", 100 "//ios/chrome/app/strings",
100 "//ios/chrome/app/theme", 101 "//ios/chrome/app/theme",
101 "//ios/chrome/browser", 102 "//ios/chrome/browser",
102 "//ios/chrome/browser/browser_state", 103 "//ios/chrome/browser/browser_state",
103 "//ios/chrome/browser/favicon", 104 "//ios/chrome/browser/favicon",
104 "//ios/chrome/browser/metrics:metrics_internal", 105 "//ios/chrome/browser/metrics:metrics_internal",
105 "//ios/chrome/browser/sessions", 106 "//ios/chrome/browser/sessions",
106 "//ios/chrome/browser/signin", 107 "//ios/chrome/browser/signin",
107 "//ios/chrome/browser/sync", 108 "//ios/chrome/browser/sync",
108 "//ios/chrome/browser/tabs", 109 "//ios/chrome/browser/tabs",
109 "//ios/chrome/browser/ui", 110 "//ios/chrome/browser/ui",
110 "//ios/chrome/browser/ui/colors", 111 "//ios/chrome/browser/ui/colors",
111 "//ios/chrome/browser/ui/commands", 112 "//ios/chrome/browser/ui/commands",
112 "//ios/chrome/browser/ui/keyboard", 113 "//ios/chrome/browser/ui/keyboard",
113 "//ios/chrome/browser/ui/material_components", 114 "//ios/chrome/browser/ui/material_components",
114 "//ios/chrome/browser/ui/ntp/recent_tabs/views", 115 "//ios/chrome/browser/ui/ntp/recent_tabs/views",
115 "//ios/chrome/browser/ui/sync", 116 "//ios/chrome/browser/ui/sync",
116 "//ios/chrome/browser/ui/tab_switcher:resources",
117 "//ios/chrome/browser/ui/tabs", 117 "//ios/chrome/browser/ui/tabs",
118 "//ios/chrome/browser/ui/toolbar", 118 "//ios/chrome/browser/ui/toolbar",
119 "//ios/chrome/common:ios_app_bundle_id_prefix_header", 119 "//ios/chrome/common:ios_app_bundle_id_prefix_header",
120 "//ios/public/provider/chrome/browser", 120 "//ios/public/provider/chrome/browser",
121 "//ios/third_party/material_components_ios", 121 "//ios/third_party/material_components_ios",
122 "//ios/third_party/material_roboto_font_loader_ios", 122 "//ios/third_party/material_roboto_font_loader_ios",
123 "//ios/third_party/material_text_accessibility_ios", 123 "//ios/third_party/material_text_accessibility_ios",
124 "//ios/web", 124 "//ios/web",
125 "//ui/base", 125 "//ui/base",
126 "//ui/gfx", 126 "//ui/gfx",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 "//ios/chrome/test/app:test_support", 192 "//ios/chrome/test/app:test_support",
193 "//ios/chrome/test/earl_grey:test_support", 193 "//ios/chrome/test/earl_grey:test_support",
194 "//ios/third_party/earl_grey", 194 "//ios/third_party/earl_grey",
195 "//ui/base", 195 "//ui/base",
196 ] 196 ]
197 libs = [ 197 libs = [
198 "UIKit.framework", 198 "UIKit.framework",
199 "XCTest.framework", 199 "XCTest.framework",
200 ] 200 ]
201 } 201 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698