| 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 ] |
| 11 outputs = [ | 11 outputs = [ |
| 12 "{{bundle_resources_dir}}/{{source_file_part}}", | 12 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 13 ] | 13 ] |
| 14 } | 14 } |
| 15 | 15 |
| 16 source_set("safe_mode") { | 16 source_set("safe_mode") { |
| 17 configs += [ "//build/config/compiler:enable_arc" ] |
| 17 sources = [ | 18 sources = [ |
| 18 "safe_mode_coordinator.h", | 19 "safe_mode_coordinator.h", |
| 19 "safe_mode_coordinator.mm", | 20 "safe_mode_coordinator.mm", |
| 20 "safe_mode_view_controller.h", | 21 "safe_mode_view_controller.h", |
| 21 "safe_mode_view_controller.mm", | 22 "safe_mode_view_controller.mm", |
| 22 ] | 23 ] |
| 23 | 24 |
| 24 deps = [ | 25 deps = [ |
| 25 ":resources", | 26 ":resources", |
| 26 "//base", | 27 "//base", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "//base", | 67 "//base", |
| 67 "//breakpad:client", | 68 "//breakpad:client", |
| 68 "//ios/chrome/browser/crash_report", | 69 "//ios/chrome/browser/crash_report", |
| 69 "//ios/chrome/test/base", | 70 "//ios/chrome/test/base", |
| 70 "//ios/chrome/test/ocmock", | 71 "//ios/chrome/test/ocmock", |
| 71 "//testing/gtest", | 72 "//testing/gtest", |
| 72 "//third_party/ocmock", | 73 "//third_party/ocmock", |
| 73 ] | 74 ] |
| 74 libs = [ "UIKit.framework" ] | 75 libs = [ "UIKit.framework" ] |
| 75 } | 76 } |
| OLD | NEW |