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

Unified Diff: shell/BUILD.gn

Issue 1088533003: Adding URLResponse Disk Cache to mojo. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Remove unused function 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 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 fd8ff5c15828bb3e60b599438a242865623ba8ab..2e043a1ac89529188f84dbba69cb33b1d4ad6b18 100644
--- a/shell/BUILD.gn
+++ b/shell/BUILD.gn
@@ -123,6 +123,8 @@ source_set("common_lib") {
# TODO(vtl): Split this target into parent/child/common libs.
source_set("lib") {
sources = [
+ "background_application_loader.cc",
+ "background_application_loader.h",
"child_process_host.cc",
"child_process_host.h",
"command_line_util.cc",
@@ -135,6 +137,8 @@ source_set("lib") {
"in_process_native_runner.h",
"out_of_process_native_runner.cc",
"out_of_process_native_runner.h",
+ "service_cache_loader.cc",
+ "service_cache_loader.h",
"task_runners.cc",
"task_runners.h",
"tracer.cc",
@@ -156,6 +160,7 @@ source_set("lib") {
"//mojo/public/interfaces/application",
"//mojo/services/network/public/interfaces",
"//shell/application_manager",
+ "//services/service_cache",
"//services/tracing:bindings",
"//url",
]
@@ -170,8 +175,6 @@ source_set("lib") {
"android/android_handler.h",
"android/android_handler_loader.cc",
"android/android_handler_loader.h",
- "android/background_application_loader.cc",
- "android/background_application_loader.h",
"android/intent_receiver_manager_factory.cc",
"android/intent_receiver_manager_factory.h",
"android/intent_receiver_manager_impl.cc",
@@ -376,6 +379,7 @@ mojom("child_controller_bindings") {
test("mojo_shell_tests") {
sources = [
+ "background_application_loader_unittest.cc",
"child_process_host_unittest.cc",
"command_line_util_unittest.cc",
"context_unittest.cc",
@@ -412,8 +416,6 @@ test("mojo_shell_tests") {
]
if (is_android) {
- sources += [ "android/background_application_loader_unittest.cc" ]
-
deps += [ ":jni_headers" ]
apk_deps = [

Powered by Google App Engine
This is Rietveld 408576698