| 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 import("//tools/grit/repack.gni") | 5 import("//tools/grit/repack.gni") |
| 6 import("//build/config/ios/rules.gni") | 6 import("//build/config/ios/rules.gni") |
| 7 | 7 |
| 8 ios_app_bundle("ios_web_view_shell") { | 8 ios_app_bundle("ios_web_view_shell") { |
| 9 configs += [ "//build/config/compiler:enable_arc" ] |
| 9 deps = [ | 10 deps = [ |
| 10 "//base", | 11 "//base", |
| 11 "//ios/web_view", | 12 "//ios/web_view", |
| 12 ] | 13 ] |
| 13 bundle_deps = [ | 14 bundle_deps = [ |
| 14 ":resources", | 15 ":resources", |
| 15 ":packed_resources", | 16 ":packed_resources", |
| 16 ] | 17 ] |
| 17 info_plist = "Info.plist" | 18 info_plist = "Info.plist" |
| 18 sources = [ | 19 sources = [ |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 public_deps = [ | 73 public_deps = [ |
| 73 ":repack_resources", | 74 ":repack_resources", |
| 74 ] | 75 ] |
| 75 sources = [ | 76 sources = [ |
| 76 "$target_gen_dir/web_view_resources.pak", | 77 "$target_gen_dir/web_view_resources.pak", |
| 77 ] | 78 ] |
| 78 outputs = [ | 79 outputs = [ |
| 79 "{{bundle_resources_dir}}/{{source_file_part}}", | 80 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 80 ] | 81 ] |
| 81 } | 82 } |
| OLD | NEW |