OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/rules.gni") | 6 import("//build/config/android/rules.gni") |
7 } | 7 } |
8 | 8 |
9 # GYP: //components/offline_pages.gypi:offline_pages | 9 # GYP: //components/offline_pages.gypi:offline_pages |
10 static_library("offline_pages") { | 10 static_library("offline_pages") { |
11 sources = [ | 11 sources = [ |
12 "offline_page_archiver.h", | 12 "offline_page_archiver.h", |
13 "offline_page_feature.cc", | 13 "offline_page_feature.cc", |
14 "offline_page_feature.h", | 14 "offline_page_feature.h", |
15 "offline_page_item.cc", | 15 "offline_page_item.cc", |
16 "offline_page_item.h", | 16 "offline_page_item.h", |
17 "offline_page_metadata_store.cc", | 17 "offline_page_metadata_store.cc", |
18 "offline_page_metadata_store.h", | 18 "offline_page_metadata_store.h", |
19 "offline_page_metadata_store_impl.cc", | 19 "offline_page_metadata_store_impl.cc", |
20 "offline_page_metadata_store_impl.h", | 20 "offline_page_metadata_store_impl.h", |
21 "offline_page_model.cc", | 21 "offline_page_model.cc", |
22 "offline_page_model.h", | 22 "offline_page_model.h", |
| 23 "offline_page_switches.cc", |
| 24 "offline_page_switches.h", |
23 ] | 25 ] |
24 | 26 |
25 deps = [ | 27 deps = [ |
26 "//base", | 28 "//base", |
27 "//components/keyed_service/core", | 29 "//components/keyed_service/core", |
28 "//components/leveldb_proto", | 30 "//components/leveldb_proto", |
29 "//components/offline_pages/proto:offline_pages_proto", | 31 "//components/offline_pages/proto:offline_pages_proto", |
30 "//net", | 32 "//net", |
31 "//third_party/leveldatabase", | 33 "//third_party/leveldatabase", |
32 "//url", | 34 "//url", |
(...skipping 19 matching lines...) Expand all Loading... |
52 sources = [ | 54 sources = [ |
53 "offline_page_model.h", | 55 "offline_page_model.h", |
54 ] | 56 ] |
55 outputs = [ | 57 outputs = [ |
56 "org/chromium/components/offline_pages/DeletePageResult.java", | 58 "org/chromium/components/offline_pages/DeletePageResult.java", |
57 "org/chromium/components/offline_pages/LoadResult.java", | 59 "org/chromium/components/offline_pages/LoadResult.java", |
58 "org/chromium/components/offline_pages/SavePageResult.java", | 60 "org/chromium/components/offline_pages/SavePageResult.java", |
59 ] | 61 ] |
60 } | 62 } |
61 } | 63 } |
OLD | NEW |