Index: mandoline/app/android/BUILD.gn |
diff --git a/mandoline/app/android/BUILD.gn b/mandoline/app/android/BUILD.gn |
index 07edbdc53c51649a7fd3338de0b0311298b92a57..343c540ce453417bb14fabaee79d5d149da80861 100644 |
--- a/mandoline/app/android/BUILD.gn |
+++ b/mandoline/app/android/BUILD.gn |
@@ -54,25 +54,21 @@ copy_ex("copy_mandoline_assets") { |
deps = [ |
"//components/devtools_service", |
"//components/html_viewer", |
- "//components/view_manager", |
scottmg
2015/06/12 22:40:10
these are gone on purpose?
msw
2015/06/12 22:57:03
Yeah, the view manager, surfaces, and network serv
|
- "//components/view_manager/surfaces", |
"//mandoline/services/core_services", |
"//mojo/runner:bootstrap", |
"//mojo/runner:bootstrap_java", |
- "//mojo/services/network", |
] |
sources = [ |
- "$root_out_dir/core_services.mojo", |
- "$root_out_dir/devtools_service.mojo", |
"$root_out_dir/lib.stripped/libbootstrap.so", |
- "$root_out_dir/network_service.mojo", |
"$root_out_dir/obj/mojo/runner/bootstrap_java.dex.jar", |
- "$root_out_dir/surfaces_service.mojo", |
] |
# Directories can't be specified as sources so pass manually to the script. |
- args = |
- [ "--files=" + rebase_path("$root_out_dir/html_viewer", root_build_dir) ] |
+ args = [ |
+ "--files=" + rebase_path("$root_out_dir/core_services", root_build_dir), |
+ "--files=" + rebase_path("$root_out_dir/devtools_service", root_build_dir), |
+ "--files=" + rebase_path("$root_out_dir/html_viewer", root_build_dir), |
+ ] |
if (use_aura) { |
deps += [ |
@@ -80,9 +76,10 @@ copy_ex("copy_mandoline_assets") { |
"//mandoline/ui/omnibox", |
] |
- args += |
- [ "--files=" + rebase_path("$root_out_dir/browser", root_build_dir) ] + |
- [ "--files=" + rebase_path("$root_out_dir/omnibox", root_build_dir) ] |
+ args += [ |
+ "--files=" + rebase_path("$root_out_dir/browser", root_build_dir), |
+ "--files=" + rebase_path("$root_out_dir/omnibox", root_build_dir), |
+ ] |
} |
} |