| 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/fatal_error.png", | 7 "resources/fatal_error.png", |
| 8 "resources/fatal_error@2x.png", | 8 "resources/fatal_error@2x.png", |
| 9 "resources/fatal_error@3x.png", | 9 "resources/fatal_error@3x.png", |
| 10 ] | 10 ] |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "//ios/chrome/app:app_internal", | 48 "//ios/chrome/app:app_internal", |
| 49 "//ios/chrome/app/strings", | 49 "//ios/chrome/app/strings", |
| 50 "//ios/chrome/browser/ui/main", | 50 "//ios/chrome/browser/ui/main", |
| 51 "//ios/chrome/test/base", | 51 "//ios/chrome/test/base", |
| 52 "//ios/chrome/test/earl_grey:test_support", | 52 "//ios/chrome/test/earl_grey:test_support", |
| 53 "//ios/third_party/earl_grey", | 53 "//ios/third_party/earl_grey", |
| 54 ] | 54 ] |
| 55 } | 55 } |
| 56 | 56 |
| 57 source_set("unit_tests") { | 57 source_set("unit_tests") { |
| 58 configs += [ "//build/config/compiler:enable_arc" ] |
| 58 testonly = true | 59 testonly = true |
| 59 sources = [ | 60 sources = [ |
| 60 "safe_mode_coordinator_unittest.mm", | 61 "safe_mode_coordinator_unittest.mm", |
| 61 "safe_mode_view_controller_unittest.mm", | 62 "safe_mode_view_controller_unittest.mm", |
| 62 ] | 63 ] |
| 63 deps = [ | 64 deps = [ |
| 64 ":safe_mode", | 65 ":safe_mode", |
| 65 "//base", | 66 "//base", |
| 66 "//breakpad:client", | 67 "//breakpad:client", |
| 67 "//ios/chrome/browser/crash_report", | 68 "//ios/chrome/browser/crash_report", |
| 68 "//ios/chrome/test/base", | 69 "//ios/chrome/test/base", |
| 69 "//ios/chrome/test/ocmock", | 70 "//ios/chrome/test/ocmock", |
| 70 "//testing/gtest", | 71 "//testing/gtest", |
| 71 "//third_party/ocmock", | 72 "//third_party/ocmock", |
| 72 ] | 73 ] |
| 73 libs = [ "UIKit.framework" ] | 74 libs = [ "UIKit.framework" ] |
| 74 } | 75 } |
| OLD | NEW |