Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Side by Side Diff: ios/web_view/shell/BUILD.gn

Issue 2772503006: Use framework includes in ios/web_view/shell. (Closed)
Patch Set: Link against framework. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//build/config/ios/rules.gni") 5 import("//build/config/ios/rules.gni")
6 6
7 ios_app_bundle("ios_web_view_shell") { 7 ios_app_bundle("ios_web_view_shell") {
8 info_plist = "Info.plist" 8 info_plist = "Info.plist"
9 9
10 deps = [ 10 deps = [
11 ":shell", 11 ":shell",
12 "//ios/web_view",
13 "//ios/web_view:web_view+link",
14 ] 12 ]
15 bundle_deps = [ "//ios/web_view:web_view+bundle" ] 13 bundle_deps = [ "//ios/web_view:web_view+bundle" ]
16 14
17 configs += [ "//build/config/compiler:enable_arc" ] 15 configs += [ "//build/config/compiler:enable_arc" ]
18 } 16 }
19 17
20 source_set("shell") { 18 source_set("shell") {
21 sources = [ 19 sources = [
22 "shell_app_delegate.h", 20 "shell_app_delegate.h",
23 "shell_app_delegate.m", 21 "shell_app_delegate.m",
24 "shell_delegate.h", 22 "shell_delegate.h",
25 "shell_delegate.m", 23 "shell_delegate.m",
26 "shell_exe_main.m", 24 "shell_exe_main.m",
27 "shell_view_controller.h", 25 "shell_view_controller.h",
28 "shell_view_controller.m", 26 "shell_view_controller.m",
29 "translate_controller.h", 27 "translate_controller.h",
30 "translate_controller.m", 28 "translate_controller.m",
31 ] 29 ]
32 30
33 deps = [ 31 deps = [
34 ":resources", 32 ":resources",
35 "//ios/web_view", 33 "//ios/web_view:web_view+link",
36 ] 34 ]
37 35
38 libs = [ 36 libs = [
39 "CFNetwork.framework", 37 "CFNetwork.framework",
40 "CoreFoundation.framework", 38 "CoreFoundation.framework",
41 "CoreGraphics.framework", 39 "CoreGraphics.framework",
42 "CoreText.framework", 40 "CoreText.framework",
43 "Foundation.framework", 41 "Foundation.framework",
44 "ImageIO.framework", 42 "ImageIO.framework",
45 "MobileCoreServices.framework", 43 "MobileCoreServices.framework",
(...skipping 13 matching lines...) Expand all
59 "Default-568h@2x.png", 57 "Default-568h@2x.png",
60 "textfield_background@2x.png", 58 "textfield_background@2x.png",
61 "toolbar_back@2x.png", 59 "toolbar_back@2x.png",
62 "toolbar_forward@2x.png", 60 "toolbar_forward@2x.png",
63 "toolbar_stop@2x.png", 61 "toolbar_stop@2x.png",
64 ] 62 ]
65 outputs = [ 63 outputs = [
66 "{{bundle_resources_dir}}/{{source_file_part}}", 64 "{{bundle_resources_dir}}/{{source_file_part}}",
67 ] 65 ]
68 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698