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

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

Issue 2844253003: Adding close button in SigninPromoView (Closed)
Patch Set: Changing dismiss to close, and moving the button to the cell Created 3 years, 7 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 6
7 bundle_data("resources") { 7 bundle_data("resources") {
8 sources = [ 8 sources = [
9 "resources/signin_confirmation_more.png", 9 "resources/signin_confirmation_more.png",
10 "resources/signin_confirmation_more@2x.png", 10 "resources/signin_confirmation_more@2x.png",
11 "resources/signin_confirmation_more@3x.png", 11 "resources/signin_confirmation_more@3x.png",
12 "resources/signin_promo_close_gray.png",
13 "resources/signin_promo_close_gray@2x.png",
14 "resources/signin_promo_close_gray@3x.png",
12 ] 15 ]
13 if (is_chrome_branded) { 16 if (is_chrome_branded) {
14 sources += [ 17 sources += [
15 "resources/signin_promo_logo_chrome_color.png", 18 "resources/signin_promo_logo_chrome_color.png",
16 "resources/signin_promo_logo_chrome_color@2x.png", 19 "resources/signin_promo_logo_chrome_color@2x.png",
17 "resources/signin_promo_logo_chrome_color@3x.png", 20 "resources/signin_promo_logo_chrome_color@3x.png",
18 ] 21 ]
19 } else { 22 } else {
20 sources += [ 23 sources += [
21 "resources/signin_promo_logo_chromium_color.png", 24 "resources/signin_promo_logo_chromium_color.png",
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 "//ios/chrome/browser/ui/tools_menu", 205 "//ios/chrome/browser/ui/tools_menu",
203 "//ios/chrome/test/app:test_support", 206 "//ios/chrome/test/app:test_support",
204 "//ios/chrome/test/earl_grey:test_support", 207 "//ios/chrome/test/earl_grey:test_support",
205 "//ios/public/provider/chrome/browser/signin:test_support", 208 "//ios/public/provider/chrome/browser/signin:test_support",
206 "//ios/testing:ios_test_support", 209 "//ios/testing:ios_test_support",
207 "//ios/testing/earl_grey:earl_grey_support", 210 "//ios/testing/earl_grey:earl_grey_support",
208 "//ios/third_party/earl_grey", 211 "//ios/third_party/earl_grey",
209 ] 212 ]
210 libs = [ "XCTest.framework" ] 213 libs = [ "XCTest.framework" ]
211 } 214 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698