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

Side by Side Diff: android_webview/BUILD.gn

Issue 1890203002: Implement Web Restrictions in WebView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase (again!) Created 4 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 | android_webview/DEPS » ('j') | components/policy/resources/policy_templates.json » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 import("//build/config/locales.gni") 7 import("//build/config/locales.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 import("system_webview_apk_tmpl.gni") 9 import("system_webview_apk_tmpl.gni")
10 import("webview_repack_locales.gni") 10 import("webview_repack_locales.gni")
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 ] 95 ]
96 deps = [ 96 deps = [
97 ":repack_locales", 97 ":repack_locales",
98 ] 98 ]
99 } 99 }
100 100
101 repack("repack_pack") { 101 repack("repack_pack") {
102 sources = [ 102 sources = [
103 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak" , 103 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak" ,
104 "$root_gen_dir/blink/public/resources/blink_resources.pak", 104 "$root_gen_dir/blink/public/resources/blink_resources.pak",
105 "$root_gen_dir/components/components_resources.pak",
105 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak", 106 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak",
106 "$root_gen_dir/content/content_resources.pak", 107 "$root_gen_dir/content/content_resources.pak",
107 "$root_gen_dir/net/net_resources.pak", 108 "$root_gen_dir/net/net_resources.pak",
108 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", 109 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak",
110 "$root_gen_dir/ui/resources/webui_resources.pak",
109 "$target_gen_dir/aw_resources.pak", 111 "$target_gen_dir/aw_resources.pak",
110 ] 112 ]
111 deps = [ 113 deps = [
112 ":generate_aw_resources", 114 ":generate_aw_resources",
115 "//components/resources:components_resources",
113 "//content:resources", 116 "//content:resources",
114 "//content/app/resources", 117 "//content/app/resources",
115 "//net:net_resources", 118 "//net:net_resources",
116 "//third_party/WebKit/public:image_resources", 119 "//third_party/WebKit/public:image_resources",
117 "//third_party/WebKit/public:resources", 120 "//third_party/WebKit/public:resources",
118 "//ui/resources", 121 "//ui/resources",
119 ] 122 ]
120 output = "$target_gen_dir/webviewchromium.pak" 123 output = "$target_gen_dir/webviewchromium.pak"
121 } 124 }
122 125
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
562 "//components/metrics:gpu", 565 "//components/metrics:gpu",
563 "//components/metrics:net", 566 "//components/metrics:net",
564 "//components/metrics:profiler", 567 "//components/metrics:profiler",
565 "//components/metrics:ui", 568 "//components/metrics:ui",
566 "//components/navigation_interception", 569 "//components/navigation_interception",
567 "//components/network_session_configurator:switches", 570 "//components/network_session_configurator:switches",
568 "//components/prefs", 571 "//components/prefs",
569 "//components/printing/browser", 572 "//components/printing/browser",
570 "//components/printing/common", 573 "//components/printing/common",
571 "//components/printing/renderer", 574 "//components/printing/renderer",
575 "//components/supervised_user_error_page",
576 "//components/supervised_user_error_page:gin",
572 "//components/visitedlink/browser", 577 "//components/visitedlink/browser",
573 "//components/visitedlink/renderer", 578 "//components/visitedlink/renderer",
574 "//components/web_contents_delegate_android:web_contents_delegate_android", 579 "//components/web_contents_delegate_android:web_contents_delegate_android",
580 "//components/web_restrictions:browser",
575 "//content", 581 "//content",
576 "//content/public/app:both", 582 "//content/public/app:both",
577 "//content/public/browser", 583 "//content/public/browser",
578 "//gin", 584 "//gin",
579 "//gpu/command_buffer/client:gl_in_process_context", 585 "//gpu/command_buffer/client:gl_in_process_context",
580 "//gpu/command_buffer/client:gles2_c_lib", 586 "//gpu/command_buffer/client:gles2_c_lib",
581 "//gpu/command_buffer/client:gles2_implementation", 587 "//gpu/command_buffer/client:gles2_implementation",
582 "//gpu/command_buffer/common:gles2_utils", 588 "//gpu/command_buffer/common:gles2_utils",
583 "//gpu/command_buffer/service", 589 "//gpu/command_buffer/service",
584 "//gpu/skia_bindings", 590 "//gpu/skia_bindings",
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 "java/src/org/chromium/android_webview/permission/AwPermissionRequest.java", 678 "java/src/org/chromium/android_webview/permission/AwPermissionRequest.java",
673 "java/src/org/chromium/android_webview/policy/AwPolicyProvider.java", 679 "java/src/org/chromium/android_webview/policy/AwPolicyProvider.java",
674 ] 680 ]
675 deps = [ 681 deps = [
676 ":resources", 682 ":resources",
677 ":strings_grd", 683 ":strings_grd",
678 "//base:base_java", 684 "//base:base_java",
679 "//components/external_video_surface:java", 685 "//components/external_video_surface:java",
680 "//components/navigation_interception/android:navigation_interception_java", 686 "//components/navigation_interception/android:navigation_interception_java",
681 "//components/web_contents_delegate_android:web_contents_delegate_android_ja va", 687 "//components/web_contents_delegate_android:web_contents_delegate_android_ja va",
688 "//components/web_restrictions:web_restrictions_java",
682 "//content/public/android:content_java", 689 "//content/public/android:content_java",
683 "//net/android:net_java", 690 "//net/android:net_java",
684 "//ui/android:ui_java", 691 "//ui/android:ui_java",
685 ] 692 ]
686 693
687 if (enable_configuration_policy) { 694 if (enable_configuration_policy) {
688 deps += [ "//components/policy/android:policy_java" ] 695 deps += [ "//components/policy/android:policy_java" ]
689 } 696 }
690 697
691 srcjar_deps = [ "//android_webview/native:aw_permission_request_resource" ] 698 srcjar_deps = [ "//android_webview/native:aw_permission_request_resource" ]
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 android_manifest = get_target_outputs(":system_webview_manifest") 753 android_manifest = get_target_outputs(":system_webview_manifest")
747 android_manifest = android_manifest[1] 754 android_manifest = android_manifest[1]
748 android_manifest_dep = ":system_webview_manifest" 755 android_manifest_dep = ":system_webview_manifest"
749 deps = [ 756 deps = [
750 ":system_webview_resources", 757 ":system_webview_resources",
751 "//android_webview/glue", 758 "//android_webview/glue",
752 ] 759 ]
753 apk_name = "SystemWebView" 760 apk_name = "SystemWebView"
754 } 761 }
755 } 762 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/DEPS » ('j') | components/policy/resources/policy_templates.json » ('J')

Powered by Google App Engine
This is Rietveld 408576698