| 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/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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |