OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |