Chromium Code Reviews| Index: shell/BUILD.gn |
| diff --git a/shell/BUILD.gn b/shell/BUILD.gn |
| index cf4e187662b72ec16196dc7fee7c30005abfc0c2..c28128c831db1b6b9799d99b343ead66b2d8c885 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,30 @@ if (is_android) { |
| ":bootstrap_java", |
| "//mojo/public/tools:copy_network_service", |
| ] |
| + |
| + if (!is_debug) { |
| + sources += [ |
|
etiennej
2015/09/24 14:35:25
Here is the list of core mojo apps that are loaded
|
| + "$root_out_dir/authenticating_url_loader_interceptor.mojo", |
| + "$root_out_dir/dart_content_handler.mojo", |
| + "$root_out_dir/icu_data.mojo", |
| + "$root_out_dir/kiosk_wm.mojo", |
| + "$root_out_dir/surfaces_service.mojo", |
| + "$root_out_dir/tracing.mojo", |
| + "$root_out_dir/view_manager.mojo", |
| + "$root_out_dir/window_manager.mojo", |
| + ] |
| + |
| + deps += [ |
| + "//services/authenticating_url_loader_interceptor", |
| + "//services/dart:dart_content_handler", |
| + "//services/icu_data", |
| + "//services/kiosk_wm", |
| + "//services/surfaces", |
| + "//services/tracing", |
| + "//services/view_manager", |
| + "//services/window_manager", |
|
etiennej
2015/09/24 14:35:25
If you remove window_manager.mojo, you can remove
|
| + ] |
| + } |
| } |
| copy_ex("copy_mojo_shell_test_assets") { |