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

Side by Side Diff: components/background_task_scheduler/BUILD.gn

Issue 2814653003: [Android] BackgroundTaskScheduler reschedule implementation (Closed)
Patch Set: Rebasing Created 3 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 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/android/rules.gni") 7 import("//build/config/android/rules.gni")
8 } 8 }
9 9
10 # Convenience target for developers to build prod and test code. 10 # Convenience target for developers to build prod and test code.
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 "//third_party/junit", 60 "//third_party/junit",
61 google_play_services_library, 61 google_play_services_library,
62 ] 62 ]
63 } 63 }
64 64
65 junit_binary("components_background_task_scheduler_junit_tests") { 65 junit_binary("components_background_task_scheduler_junit_tests") {
66 java_files = [ 66 java_files = [
67 "android/junit/src/org/chromium/components/background_task_scheduler/Backg roundTaskSchedulerGcmNetworkManagerTest.java", 67 "android/junit/src/org/chromium/components/background_task_scheduler/Backg roundTaskSchedulerGcmNetworkManagerTest.java",
68 "android/junit/src/org/chromium/components/background_task_scheduler/Backg roundTaskGcmTaskServiceTest.java", 68 "android/junit/src/org/chromium/components/background_task_scheduler/Backg roundTaskGcmTaskServiceTest.java",
69 "android/junit/src/org/chromium/components/background_task_scheduler/Backg roundTaskSchedulerPrefsTest.java", 69 "android/junit/src/org/chromium/components/background_task_scheduler/Backg roundTaskSchedulerPrefsTest.java",
70 "android/junit/src/org/chromium/components/background_task_scheduler/Backg roundTaskSchedulerTest.java",
70 "android/junit/src/org/chromium/components/background_task_scheduler/Shado wGcmNetworkManager.java", 71 "android/junit/src/org/chromium/components/background_task_scheduler/Shado wGcmNetworkManager.java",
71 "android/junit/src/org/chromium/components/background_task_scheduler/TestB ackgroundTask.java", 72 "android/junit/src/org/chromium/components/background_task_scheduler/TestB ackgroundTask.java",
72 ] 73 ]
73 74
74 deps = [ 75 deps = [
75 ":background_task_scheduler_java", 76 ":background_task_scheduler_java",
76 "//base:base_java", 77 "//base:base_java",
77 "//base:base_java_test_support", 78 "//base:base_java_test_support",
78 "//third_party/junit", 79 "//third_party/junit",
79 google_play_services_library, 80 google_play_services_library,
80 ] 81 ]
81 srcjar_deps = [ "//base:base_build_config_gen" ] 82 srcjar_deps = [ "//base:base_build_config_gen" ]
82 } 83 }
83 } 84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698