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

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

Issue 2592173002: Fix ios_chrome_unittests to crash on DCHECK failure. (Closed)
Patch Set: Address comments Created 3 years, 12 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/app_icon_placeholder.png", 7 "resources/app_icon_placeholder.png",
8 "resources/app_icon_placeholder@2x.png", 8 "resources/app_icon_placeholder@2x.png",
9 "resources/app_icon_placeholder@3x.png", 9 "resources/app_icon_placeholder@3x.png",
10 "resources/encryption_error.png", 10 "resources/encryption_error.png",
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 "StoreKit.framework", 189 "StoreKit.framework",
190 "UIKit.framework", 190 "UIKit.framework",
191 ] 191 ]
192 } 192 }
193 193
194 source_set("test_support") { 194 source_set("test_support") {
195 testonly = true 195 testonly = true
196 sources = [ 196 sources = [
197 "passphrase_collection_view_controller_test.h", 197 "passphrase_collection_view_controller_test.h",
198 "passphrase_collection_view_controller_test.mm", 198 "passphrase_collection_view_controller_test.mm",
199 "personal_data_manager_data_changed_observer.cc",
200 "personal_data_manager_data_changed_observer.h",
199 ] 201 ]
200 deps = [ 202 deps = [
201 ":settings", 203 ":settings",
202 "//base", 204 "//base",
205 "//components/autofill/core/browser",
203 "//components/browser_sync", 206 "//components/browser_sync",
204 "//components/browser_sync:test_support", 207 "//components/browser_sync:test_support",
205 "//components/keyed_service/core", 208 "//components/keyed_service/core",
206 "//components/pref_registry", 209 "//components/pref_registry",
207 "//components/sync", 210 "//components/sync",
208 "//components/sync_preferences", 211 "//components/sync_preferences",
209 "//components/sync_preferences:test_support", 212 "//components/sync_preferences:test_support",
210 "//google_apis", 213 "//google_apis",
211 "//ios/chrome/browser/browser_state", 214 "//ios/chrome/browser/browser_state",
212 "//ios/chrome/browser/browser_state:test_support", 215 "//ios/chrome/browser/browser_state:test_support",
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 ] 377 ]
375 378
376 configs += [ "//build/config/compiler:enable_arc" ] 379 configs += [ "//build/config/compiler:enable_arc" ]
377 380
378 deps = [ 381 deps = [
379 ":settings", 382 ":settings",
380 "//ios/chrome/browser:browser_clean_skeleton", 383 "//ios/chrome/browser:browser_clean_skeleton",
381 "//ios/chrome/browser/ui/actions", 384 "//ios/chrome/browser/ui/actions",
382 ] 385 ]
383 } 386 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698