| 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 "application_delegate/memory_warning_helper.h", | 7 "application_delegate/memory_warning_helper.h", |
| 8 "application_delegate/memory_warning_helper.mm", | 8 "application_delegate/memory_warning_helper.mm", |
| 9 "deferred_initialization_runner.h", | 9 "deferred_initialization_runner.h", |
| 10 "deferred_initialization_runner.mm", | 10 "deferred_initialization_runner.mm", |
| 11 "safe_mode_crashing_modules_config.h", | 11 "safe_mode_crashing_modules_config.h", |
| 12 "safe_mode_crashing_modules_config.mm", | 12 "safe_mode_crashing_modules_config.mm", |
| 13 "safe_mode_util.cc", | 13 "safe_mode_util.cc", |
| 14 "safe_mode_util.h", | 14 "safe_mode_util.h", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 deps = [ | 17 deps = [ |
| 18 "//base", | 18 "//base", |
| 19 "//ios/chrome/browser", | 19 "//ios/chrome/browser", |
| 20 ] | 20 ] |
| 21 | 21 |
| 22 libs = [ | 22 libs = [ |
| 23 "Foundation.framework", | 23 "Foundation.framework", |
| 24 "UIKit.framework", | 24 "UIKit.framework", |
| 25 ] | 25 ] |
| 26 | |
| 27 configs += [ "//build/config/compiler:enable_arc" ] | |
| 28 } | 26 } |
| OLD | NEW |