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

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

Issue 2872083003: Added translation policy API. (Closed)
Patch Set: sync Created 3 years, 6 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 | « no previous file | ios/web_view/internal/translate/cwv_translation_controller.mm » ('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/ios_sdk.gni") 5 import("//build/config/ios/ios_sdk.gni")
6 import("//build/config/ios/rules.gni") 6 import("//build/config/ios/rules.gni")
7 import("//components/grpc_support/include/headers.gni") 7 import("//components/grpc_support/include/headers.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 config("config") { 10 config("config") {
(...skipping 13 matching lines...) Expand all
24 "public/cwv_export.h", 24 "public/cwv_export.h",
25 "public/cwv_html_element.h", 25 "public/cwv_html_element.h",
26 "public/cwv_language_detection_result.h", 26 "public/cwv_language_detection_result.h",
27 "public/cwv_navigation_action.h", 27 "public/cwv_navigation_action.h",
28 "public/cwv_navigation_delegate.h", 28 "public/cwv_navigation_delegate.h",
29 "public/cwv_scroll_view.h", 29 "public/cwv_scroll_view.h",
30 "public/cwv_scroll_view_delegate.h", 30 "public/cwv_scroll_view_delegate.h",
31 "public/cwv_translation_controller.h", 31 "public/cwv_translation_controller.h",
32 "public/cwv_translation_controller_delegate.h", 32 "public/cwv_translation_controller_delegate.h",
33 "public/cwv_translation_language.h", 33 "public/cwv_translation_language.h",
34 "public/cwv_translation_policy.h",
34 "public/cwv_ui_delegate.h", 35 "public/cwv_ui_delegate.h",
35 "public/cwv_user_content_controller.h", 36 "public/cwv_user_content_controller.h",
36 "public/cwv_user_script.h", 37 "public/cwv_user_script.h",
37 "public/cwv_web_view.h", 38 "public/cwv_web_view.h",
38 "public/cwv_web_view_configuration.h", 39 "public/cwv_web_view_configuration.h",
39 ] 40 ]
40 41
41 ios_web_view_sources = [ 42 ios_web_view_sources = [
42 "internal/cwv_html_element.mm", 43 "internal/cwv_html_element.mm",
43 "internal/cwv_html_element_internal.h", 44 "internal/cwv_html_element_internal.h",
44 "internal/cwv_navigation_action.mm", 45 "internal/cwv_navigation_action.mm",
45 "internal/cwv_navigation_action_internal.h", 46 "internal/cwv_navigation_action_internal.h",
46 "internal/cwv_scroll_view.mm", 47 "internal/cwv_scroll_view.mm",
47 "internal/cwv_scroll_view_internal.h", 48 "internal/cwv_scroll_view_internal.h",
48 "internal/cwv_user_content_controller.mm", 49 "internal/cwv_user_content_controller.mm",
49 "internal/cwv_user_content_controller_internal.h", 50 "internal/cwv_user_content_controller_internal.h",
50 "internal/cwv_user_script.mm", 51 "internal/cwv_user_script.mm",
51 "internal/cwv_web_view.mm", 52 "internal/cwv_web_view.mm",
52 "internal/cwv_web_view_configuration.mm", 53 "internal/cwv_web_view_configuration.mm",
53 "internal/cwv_web_view_configuration_internal.h", 54 "internal/cwv_web_view_configuration_internal.h",
54 "internal/pref_names.cc", 55 "internal/pref_names.cc",
55 "internal/pref_names.h", 56 "internal/pref_names.h",
56 "internal/translate/cwv_language_detection_result_internal.h", 57 "internal/translate/cwv_language_detection_result_internal.h",
57 "internal/translate/cwv_language_detection_result.mm", 58 "internal/translate/cwv_language_detection_result.mm",
58 "internal/translate/cwv_translation_controller.mm", 59 "internal/translate/cwv_translation_controller.mm",
59 "internal/translate/cwv_translation_controller_internal.h", 60 "internal/translate/cwv_translation_controller_internal.h",
60 "internal/translate/cwv_translation_language_internal.h", 61 "internal/translate/cwv_translation_language_internal.h",
61 "internal/translate/cwv_translation_language.mm", 62 "internal/translate/cwv_translation_language.mm",
63 "internal/translate/cwv_translation_policy.mm",
62 "internal/translate/web_view_translate_accept_languages_factory.cc", 64 "internal/translate/web_view_translate_accept_languages_factory.cc",
63 "internal/translate/web_view_translate_accept_languages_factory.h", 65 "internal/translate/web_view_translate_accept_languages_factory.h",
64 "internal/translate/web_view_translate_client.h", 66 "internal/translate/web_view_translate_client.h",
65 "internal/translate/web_view_translate_client.mm", 67 "internal/translate/web_view_translate_client.mm",
66 "internal/translate/web_view_translate_ranker_factory.cc", 68 "internal/translate/web_view_translate_ranker_factory.cc",
67 "internal/translate/web_view_translate_ranker_factory.h", 69 "internal/translate/web_view_translate_ranker_factory.h",
68 "internal/web_view_browser_state.h", 70 "internal/web_view_browser_state.h",
69 "internal/web_view_browser_state.mm", 71 "internal/web_view_browser_state.mm",
70 "internal/web_view_early_page_script_provider.h", 72 "internal/web_view_early_page_script_provider.h",
71 "internal/web_view_early_page_script_provider.mm", 73 "internal/web_view_early_page_script_provider.mm",
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 ] 228 ]
227 args = [ 229 args = [
228 "license_file", 230 "license_file",
229 rebase_path(_license_path, root_build_dir), 231 rebase_path(_license_path, root_build_dir),
230 "--gn-target", 232 "--gn-target",
231 "//ios/web_view", 233 "//ios/web_view",
232 "--gn-out-dir", 234 "--gn-out-dir",
233 ".", 235 ".",
234 ] 236 ]
235 } 237 }
OLDNEW
« no previous file with comments | « no previous file | ios/web_view/internal/translate/cwv_translation_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698