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

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

Issue 2839093002: Implemented new Translate API for purely Objective-C clients. (Closed)
Patch Set: merge Created 3 years, 7 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
« no previous file with comments | « ios/web_view/public/cwv_web_view.h ('k') | ios/web_view/shell/shell_translation_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ] 12 ]
13 bundle_deps = [ "//ios/web_view:web_view+bundle" ] 13 bundle_deps = [ "//ios/web_view:web_view+bundle" ]
14 14
15 configs += [ "//build/config/compiler:enable_arc" ] 15 configs += [ "//build/config/compiler:enable_arc" ]
16 } 16 }
17 17
18 source_set("shell") { 18 source_set("shell") {
19 sources = [ 19 sources = [
20 "shell_app_delegate.h", 20 "shell_app_delegate.h",
21 "shell_app_delegate.m", 21 "shell_app_delegate.m",
22 "shell_exe_main.m", 22 "shell_exe_main.m",
23 "shell_translation_delegate.h",
24 "shell_translation_delegate.m",
23 "shell_view_controller.h", 25 "shell_view_controller.h",
24 "shell_view_controller.m", 26 "shell_view_controller.m",
25 "translate_controller.h",
26 "translate_controller.m",
27 ] 27 ]
28 28
29 deps = [ 29 deps = [
30 ":resources", 30 ":resources",
31 "//ios/web_view:web_view+link", 31 "//ios/web_view:web_view+link",
32 ] 32 ]
33 33
34 libs = [ 34 libs = [
35 "CFNetwork.framework", 35 "CFNetwork.framework",
36 "CoreFoundation.framework", 36 "CoreFoundation.framework",
(...skipping 19 matching lines...) Expand all
56 "textfield_background@2x.png", 56 "textfield_background@2x.png",
57 "toolbar_back@2x.png", 57 "toolbar_back@2x.png",
58 "toolbar_forward@2x.png", 58 "toolbar_forward@2x.png",
59 "toolbar_more_horiz@2x.png", 59 "toolbar_more_horiz@2x.png",
60 "toolbar_stop@2x.png", 60 "toolbar_stop@2x.png",
61 ] 61 ]
62 outputs = [ 62 outputs = [
63 "{{bundle_resources_dir}}/{{source_file_part}}", 63 "{{bundle_resources_dir}}/{{source_file_part}}",
64 ] 64 ]
65 } 65 }
OLDNEW
« no previous file with comments | « ios/web_view/public/cwv_web_view.h ('k') | ios/web_view/shell/shell_translation_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698