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

Side by Side Diff: mandoline/app/android/BUILD.gn

Issue 1137223002: core_services: Move resource_provider to core_services. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove data_dep per discussion with sky Created 5 years, 7 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
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 assert(is_android) 5 assert(is_android)
6 6
7 import("//third_party/mojo/src/mojo/public/mojo.gni") 7 import("//third_party/mojo/src/mojo/public/mojo.gni")
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 import("//mojo/generate_mojo_shell_assets_list.gni") 10 import("//mojo/generate_mojo_shell_assets_list.gni")
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 outputs = [ 44 outputs = [
45 "$root_out_dir/lib.stripped/libmandoline_runner.so", 45 "$root_out_dir/lib.stripped/libmandoline_runner.so",
46 ] 46 ]
47 } 47 }
48 48
49 copy_ex("copy_mandoline_assets") { 49 copy_ex("copy_mandoline_assets") {
50 clear_dir = true 50 clear_dir = true
51 dest = mandoline_assets_dir 51 dest = mandoline_assets_dir
52 deps = [ 52 deps = [
53 "//components/html_viewer", 53 "//components/html_viewer",
54 "//components/resource_provider",
55 "//components/surfaces", 54 "//components/surfaces",
56 "//mandoline/services/core_services", 55 "//mandoline/services/core_services",
57 ] 56 ]
58 sources = [ 57 sources = [
59 "$root_out_dir/core_services.mojo", 58 "$root_out_dir/core_services.mojo",
60 "$root_out_dir/html_viewer", 59 "$root_out_dir/html_viewer",
61 "$root_out_dir/lib.stripped/libbootstrap.so", 60 "$root_out_dir/lib.stripped/libbootstrap.so",
62 "$root_out_dir/network_service.mojo", 61 "$root_out_dir/network_service.mojo",
63 "$root_out_dir/obj/mojo/runner/bootstrap_java.dex.jar", 62 "$root_out_dir/obj/mojo/runner/bootstrap_java.dex.jar",
64 "$root_out_dir/resource_provider.mojo",
65 "$root_out_dir/surfaces_service.mojo", 63 "$root_out_dir/surfaces_service.mojo",
66 ] 64 ]
67 } 65 }
68 66
69 generate_mojo_shell_assets_list("build_mandoline_assets") { 67 generate_mojo_shell_assets_list("build_mandoline_assets") {
70 deps = [ 68 deps = [
71 ":copy_mandoline_assets", 69 ":copy_mandoline_assets",
72 ] 70 ]
73 dir = mandoline_assets_dir 71 dir = mandoline_assets_dir
74 } 72 }
(...skipping 10 matching lines...) Expand all
85 deps = [ 83 deps = [
86 ":build_mandoline_assets", 84 ":build_mandoline_assets",
87 ":copy_mandoline_runner", 85 ":copy_mandoline_runner",
88 "//mojo/runner:java", 86 "//mojo/runner:java",
89 "//mojo/runner:resources", 87 "//mojo/runner:resources",
90 "//base:base_java", 88 "//base:base_java",
91 "//components/native_viewport:native_viewport_java", 89 "//components/native_viewport:native_viewport_java",
92 "//third_party/android_tools:google_play_services_default_resources", 90 "//third_party/android_tools:google_play_services_default_resources",
93 ] 91 ]
94 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698