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

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

Issue 2768953002: Initial work to move downloads to ContentIds (Closed)
Patch Set: Rebase because of a conflict... with a single. import. :( Created 3 years, 8 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 ":core", 52 ":core",
53 "//base/test:test_support", 53 "//base/test:test_support",
54 "//components/offline_items_collection/core/test_support", 54 "//components/offline_items_collection/core/test_support",
55 ] 55 ]
56 } 56 }
57 57
58 if (is_android) { 58 if (is_android) {
59 android_library("core_java") { 59 android_library("core_java") {
60 java_files = [ 60 java_files = [
61 "android/java/src/org/chromium/components/offline_items_collection/Content Id.java", 61 "android/java/src/org/chromium/components/offline_items_collection/Content Id.java",
62 "android/java/src/org/chromium/components/offline_items_collection/LegacyH elpers.java",
62 "android/java/src/org/chromium/components/offline_items_collection/Offline ContentAggregatorBridge.java", 63 "android/java/src/org/chromium/components/offline_items_collection/Offline ContentAggregatorBridge.java",
63 "android/java/src/org/chromium/components/offline_items_collection/Offline ContentProvider.java", 64 "android/java/src/org/chromium/components/offline_items_collection/Offline ContentProvider.java",
64 "android/java/src/org/chromium/components/offline_items_collection/Offline Item.java", 65 "android/java/src/org/chromium/components/offline_items_collection/Offline Item.java",
65 "android/java/src/org/chromium/components/offline_items_collection/Offline ItemBridge.java", 66 "android/java/src/org/chromium/components/offline_items_collection/Offline ItemBridge.java",
66 ] 67 ]
67 68
68 srcjar_deps = [ ":jni_enums" ] 69 srcjar_deps = [ ":jni_enums" ]
69 70
70 deps = [ 71 deps = [
71 "//base:base_java", 72 "//base:base_java",
(...skipping 14 matching lines...) Expand all
86 87
87 java_cpp_enum("jni_enums") { 88 java_cpp_enum("jni_enums") {
88 visibility = [ ":*" ] 89 visibility = [ ":*" ]
89 90
90 sources = [ 91 sources = [
91 "offline_item_filter.h", 92 "offline_item_filter.h",
92 "offline_item_state.h", 93 "offline_item_state.h",
93 ] 94 ]
94 } 95 }
95 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698