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

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: comments 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") {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 "android/java/src/org/chromium/components/offline_items_collection/bridges /OfflineItemVisualsBridge.java", 91 "android/java/src/org/chromium/components/offline_items_collection/bridges /OfflineItemVisualsBridge.java",
92 ] 92 ]
93 93
94 jni_package = "components/offline_items_collection/core/android" 94 jni_package = "components/offline_items_collection/core/android"
95 } 95 }
96 96
97 java_cpp_enum("jni_enums") { 97 java_cpp_enum("jni_enums") {
98 visibility = [ ":*" ] 98 visibility = [ ":*" ]
99 99
100 sources = [ 100 sources = [
101 "offline_item.h",
101 "offline_item_filter.h", 102 "offline_item_filter.h",
102 "offline_item_state.h", 103 "offline_item_state.h",
103 ] 104 ]
104 } 105 }
105 } 106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698