| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 source_set("app") { | 5 source_set("app") { |
| 6 sources = [ | 6 sources = [ |
| 7 "deferred_initialization_runner.h", | 7 "deferred_initialization_runner.h", |
| 8 "deferred_initialization_runner.mm", | 8 "deferred_initialization_runner.mm", |
| 9 "safe_mode_crashing_modules_config.h", | 9 "safe_mode_crashing_modules_config.h", |
| 10 "safe_mode_crashing_modules_config.mm", | 10 "safe_mode_crashing_modules_config.mm", |
| 11 "safe_mode_util.cc", | 11 "safe_mode_util.cc", |
| 12 "safe_mode_util.h", | 12 "safe_mode_util.h", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 # TODO(crbug.com/658242): Remove this dependency once all of downstream code | |
| 16 # dependencies have been fixed to not require it. | |
| 17 public_deps = [ | |
| 18 "//ios/chrome/app/application_delegate", | |
| 19 ] | |
| 20 | |
| 21 deps = [ | 15 deps = [ |
| 22 "//base", | 16 "//base", |
| 23 ] | 17 ] |
| 24 | 18 |
| 25 libs = [ "Foundation.framework" ] | 19 libs = [ "Foundation.framework" ] |
| 26 } | 20 } |
| 27 | 21 |
| 28 source_set("unit_tests") { | 22 source_set("unit_tests") { |
| 29 testonly = true | 23 testonly = true |
| 30 sources = [ | 24 sources = [ |
| 31 "deferred_initialization_runner_unittest.mm", | 25 "deferred_initialization_runner_unittest.mm", |
| 32 "safe_mode_util_unittest.cc", | 26 "safe_mode_util_unittest.cc", |
| 33 ] | 27 ] |
| 34 deps = [ | 28 deps = [ |
| 35 ":app", | 29 ":app", |
| 36 "//base", | 30 "//base", |
| 37 "//base/test:test_support", | 31 "//base/test:test_support", |
| 38 "//testing/gtest", | 32 "//testing/gtest", |
| 39 ] | 33 ] |
| 40 } | 34 } |
| OLD | NEW |