| 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") { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "offline_page_metadata_store_impl.h", | 21 "offline_page_metadata_store_impl.h", |
| 22 "offline_page_metadata_store_sql.cc", | 22 "offline_page_metadata_store_sql.cc", |
| 23 "offline_page_metadata_store_sql.h", | 23 "offline_page_metadata_store_sql.h", |
| 24 "offline_page_model.cc", | 24 "offline_page_model.cc", |
| 25 "offline_page_model.h", | 25 "offline_page_model.h", |
| 26 "offline_page_storage_manager.cc", | 26 "offline_page_storage_manager.cc", |
| 27 "offline_page_storage_manager.h", | 27 "offline_page_storage_manager.h", |
| 28 "offline_page_types.h", | 28 "offline_page_types.h", |
| 29 "snapshot_controller.cc", | 29 "snapshot_controller.cc", |
| 30 "snapshot_controller.h", | 30 "snapshot_controller.h", |
| 31 "storage_manager_client.h", |
| 31 ] | 32 ] |
| 32 | 33 |
| 33 deps = [ | 34 deps = [ |
| 34 ":switches", | 35 ":switches", |
| 35 "//base", | 36 "//base", |
| 36 "//components/bookmarks/browser", | 37 "//components/bookmarks/browser", |
| 37 "//components/keyed_service/core", | 38 "//components/keyed_service/core", |
| 38 "//components/leveldb_proto", | 39 "//components/leveldb_proto", |
| 39 "//components/offline_pages/proto:offline_pages_proto", | 40 "//components/offline_pages/proto:offline_pages_proto", |
| 40 "//net", | 41 "//net", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 ] | 98 ] |
| 98 } | 99 } |
| 99 | 100 |
| 100 if (is_android) { | 101 if (is_android) { |
| 101 java_cpp_enum("offline_page_model_enums_java") { | 102 java_cpp_enum("offline_page_model_enums_java") { |
| 102 sources = [ | 103 sources = [ |
| 103 "offline_page_types.h", | 104 "offline_page_types.h", |
| 104 ] | 105 ] |
| 105 } | 106 } |
| 106 } | 107 } |
| OLD | NEW |