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

Side by Side Diff: components/offline_items_collection/core/BUILD.gn

Issue 2861863002: offline_items_collection : Added helper class to determine progress (Closed)
Patch Set: more 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 static_library("core") { 10 static_library("core") {
11 sources = [ 11 sources = [
12 "offline_content_aggregator.cc", 12 "offline_content_aggregator.cc",
13 "offline_content_aggregator.h", 13 "offline_content_aggregator.h",
14 "offline_content_provider.h", 14 "offline_content_provider.h",
15 "offline_item.cc", 15 "offline_item.cc",
16 "offline_item.h", 16 "offline_item.h",
17 "offline_item_filter.h", 17 "offline_item_filter.h",
18 "offline_item_progress_unit.h",
18 "offline_item_state.h", 19 "offline_item_state.h",
19 "throttled_offline_content_provider.cc", 20 "throttled_offline_content_provider.cc",
20 "throttled_offline_content_provider.h", 21 "throttled_offline_content_provider.h",
21 ] 22 ]
22 23
23 public_deps = [ 24 public_deps = [
24 "//base", 25 "//base",
25 "//components/keyed_service/core", 26 "//components/keyed_service/core",
26 "//ui/gfx", 27 "//ui/gfx",
27 "//url", 28 "//url",
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 ] 93 ]
93 94
94 jni_package = "components/offline_items_collection/core/android" 95 jni_package = "components/offline_items_collection/core/android"
95 } 96 }
96 97
97 java_cpp_enum("jni_enums") { 98 java_cpp_enum("jni_enums") {
98 visibility = [ ":*" ] 99 visibility = [ ":*" ]
99 100
100 sources = [ 101 sources = [
101 "offline_item_filter.h", 102 "offline_item_filter.h",
103 "offline_item_progress_unit.h",
102 "offline_item_state.h", 104 "offline_item_state.h",
103 ] 105 ]
104 } 106 }
105 } 107 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698