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

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

Issue 2772503006: Use framework includes in ios/web_view/shell. (Closed)
Patch Set: Fix framework header includes. 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
« no previous file with comments | « no previous file | ios/web_view/public/ChromeWebView.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/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 = [
11 "internal", 11 "internal",
12 "public", 12 "public",
13 ] 13 ]
14 } 14 }
15 15
16 ios_framework_bundle("web_view") { 16 ios_framework_bundle("web_view") {
17 output_name = "ChromeWebView" 17 output_name = "ChromeWebView"
18 info_plist = "Info.plist" 18 info_plist = "Info.plist"
19 19
20 sources = [ 20 sources = [
21 "public/cwv.h", 21 "public/cwv.h",
22 "public/cwv_export.h", 22 "public/cwv_export.h",
23 ] 23 ]
24 24
25 public_headers = [ 25 public_headers = [
26 "public/ChromeWebView.h",
26 "public/cwv.h", 27 "public/cwv.h",
27 "public/cwv_delegate.h", 28 "public/cwv_delegate.h",
28 "public/cwv_export.h", 29 "public/cwv_export.h",
29 "public/cwv_html_element.h", 30 "public/cwv_html_element.h",
30 "public/cwv_navigation_action.h", 31 "public/cwv_navigation_action.h",
31 "public/cwv_navigation_delegate.h", 32 "public/cwv_navigation_delegate.h",
32 "public/cwv_translate_delegate.h", 33 "public/cwv_translate_delegate.h",
33 "public/cwv_translate_manager.h", 34 "public/cwv_translate_manager.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",
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 public_deps = [ 90 public_deps = [
90 ":repack_resources", 91 ":repack_resources",
91 ] 92 ]
92 sources = [ 93 sources = [
93 "$target_gen_dir/web_view_resources.pak", 94 "$target_gen_dir/web_view_resources.pak",
94 ] 95 ]
95 outputs = [ 96 outputs = [
96 "{{bundle_resources_dir}}/{{source_file_part}}", 97 "{{bundle_resources_dir}}/{{source_file_part}}",
97 ] 98 ]
98 } 99 }
OLDNEW
« no previous file with comments | « no previous file | ios/web_view/public/ChromeWebView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698