| 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 import("//build/config/ios/rules.gni") | 5 import("//build/config/ios/rules.gni") |
| 6 import("//build/config/mac/base_rules.gni") | 6 import("//build/config/mac/base_rules.gni") |
| 7 import("//build/mac/tweak_info_plist.gni") | 7 import("//build/mac/tweak_info_plist.gni") |
| 8 import("//ios/build/chrome_build.gni") | 8 import("//ios/build/chrome_build.gni") |
| 9 import("//ios/public/provider/chrome/browser/build_config.gni") | 9 import("//ios/public/provider/chrome/browser/build_config.gni") |
| 10 | 10 |
| 11 source_set("app") { | 11 source_set("app") { |
| 12 configs += [ "//build/config/compiler:enable_arc" ] |
| 12 sources = [ | 13 sources = [ |
| 13 "deferred_initialization_runner.h", | 14 "deferred_initialization_runner.h", |
| 14 "deferred_initialization_runner.mm", | 15 "deferred_initialization_runner.mm", |
| 15 "safe_mode_crashing_modules_config.h", | 16 "safe_mode_crashing_modules_config.h", |
| 16 "safe_mode_crashing_modules_config.mm", | 17 "safe_mode_crashing_modules_config.mm", |
| 17 "safe_mode_util.cc", | 18 "safe_mode_util.cc", |
| 18 "safe_mode_util.h", | 19 "safe_mode_util.h", |
| 19 ] | 20 ] |
| 20 | 21 |
| 21 deps = [ | 22 deps = [ |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 ] | 345 ] |
| 345 sources = [ | 346 sources = [ |
| 346 "$root_out_dir/share_extension.appex", | 347 "$root_out_dir/share_extension.appex", |
| 347 ] | 348 ] |
| 348 outputs = [ | 349 outputs = [ |
| 349 "{{bundle_plugins_dir}}/{{source_file_part}}", | 350 "{{bundle_plugins_dir}}/{{source_file_part}}", |
| 350 ] | 351 ] |
| 351 } | 352 } |
| 352 } | 353 } |
| 353 } | 354 } |
| OLD | NEW |