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