| 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("//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("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
| 8 | 8 |
| 9 config("config") { | 9 config("config") { |
| 10 include_dirs = [ | 10 include_dirs = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 public_headers = [ | 24 public_headers = [ |
| 25 "public/criwv_translate_manager.h", | 25 "public/criwv_translate_manager.h", |
| 26 "public/cwv.h", | 26 "public/cwv.h", |
| 27 "public/cwv_delegate.h", | 27 "public/cwv_delegate.h", |
| 28 "public/cwv_html_element.h", | 28 "public/cwv_html_element.h", |
| 29 "public/cwv_navigation_delegate.h", | 29 "public/cwv_navigation_delegate.h", |
| 30 "public/cwv_translate_delegate.h", | 30 "public/cwv_translate_delegate.h", |
| 31 "public/cwv_ui_delegate.h", | 31 "public/cwv_ui_delegate.h", |
| 32 "public/cwv_web_view.h", | 32 "public/cwv_web_view.h", |
| 33 "public/cwv_web_view_configuration.h", | 33 "public/cwv_web_view_configuration.h", |
| 34 "public/cwv_website_data_store.h", | |
| 35 ] | 34 ] |
| 36 | 35 |
| 37 deps = [ | 36 deps = [ |
| 38 ":packed_resources", | 37 ":packed_resources", |
| 39 "//base", | 38 "//base", |
| 40 "//components/infobars/core", | 39 "//components/infobars/core", |
| 41 "//components/keyed_service/core", | 40 "//components/keyed_service/core", |
| 42 "//components/keyed_service/ios", | 41 "//components/keyed_service/ios", |
| 43 "//components/pref_registry", | 42 "//components/pref_registry", |
| 44 "//components/prefs", | 43 "//components/prefs", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 public_deps = [ | 84 public_deps = [ |
| 86 ":repack_resources", | 85 ":repack_resources", |
| 87 ] | 86 ] |
| 88 sources = [ | 87 sources = [ |
| 89 "$target_gen_dir/web_view_resources.pak", | 88 "$target_gen_dir/web_view_resources.pak", |
| 90 ] | 89 ] |
| 91 outputs = [ | 90 outputs = [ |
| 92 "{{bundle_resources_dir}}/{{source_file_part}}", | 91 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 93 ] | 92 ] |
| 94 } | 93 } |
| OLD | NEW |