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

Unified Diff: shell/BUILD.gn

Issue 1364243002: Bundle core applicatons in the shell. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Follow review Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: shell/BUILD.gn
diff --git a/shell/BUILD.gn b/shell/BUILD.gn
index cf4e187662b72ec16196dc7fee7c30005abfc0c2..deb46a410eff73947859248418e3f5ee1da8d8e2 100644
--- a/shell/BUILD.gn
+++ b/shell/BUILD.gn
@@ -226,6 +226,8 @@ source_set("parent_lib") {
"android/native_viewport_application_loader.h",
"android/ui_application_loader_android.cc",
"android/ui_application_loader_android.h",
+ "android/url_response_disk_cache_delegate_impl.cc",
+ "android/url_response_disk_cache_delegate_impl.h",
]
deps += [
@@ -397,6 +399,32 @@ if (is_android) {
":bootstrap_java",
"//mojo/public/tools:copy_network_service",
]
+
+ if (!is_debug) {
+ sources += [
+ "$root_out_dir/authenticating_url_loader_interceptor.mojo",
+ "$root_out_dir/dart_content_handler.mojo",
+ "$root_out_dir/device_info.mojo",
+ "$root_out_dir/icu_data.mojo",
+ "$root_out_dir/java_handler.mojo",
+ "$root_out_dir/kiosk_wm.mojo",
+ "$root_out_dir/surfaces_service.mojo",
+ "$root_out_dir/tracing.mojo",
+ "$root_out_dir/view_manager.mojo",
+ ]
+
+ deps += [
+ "//services/authenticating_url_loader_interceptor",
+ "//services/android:java_handler",
+ "//services/dart:dart_content_handler",
+ "//services/device_info",
+ "//services/icu_data",
+ "//services/kiosk_wm",
+ "//services/surfaces",
+ "//services/tracing",
+ "//services/view_manager",
+ ]
+ }
}
copy_ex("copy_mojo_shell_test_assets") {

Powered by Google App Engine
This is Rietveld 408576698