| 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 "archive_manager.cc", | 12 "archive_manager.cc", |
| 13 "archive_manager.h", | 13 "archive_manager.h", |
| 14 "client_namespace_constants.cc", |
| 15 "client_namespace_constants.h", |
| 14 "client_policy_controller.cc", | 16 "client_policy_controller.cc", |
| 15 "client_policy_controller.h", | 17 "client_policy_controller.h", |
| 16 "offline_page_archiver.h", | 18 "offline_page_archiver.h", |
| 17 "offline_page_client_policy.h", | 19 "offline_page_client_policy.h", |
| 18 "offline_page_item.cc", | 20 "offline_page_item.cc", |
| 19 "offline_page_item.h", | 21 "offline_page_item.h", |
| 20 "offline_page_metadata_store.cc", | 22 "offline_page_metadata_store.cc", |
| 21 "offline_page_metadata_store.h", | 23 "offline_page_metadata_store.h", |
| 22 "offline_page_metadata_store_sql.cc", | 24 "offline_page_metadata_store_sql.cc", |
| 23 "offline_page_metadata_store_sql.h", | 25 "offline_page_metadata_store_sql.h", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 ] | 95 ] |
| 94 } | 96 } |
| 95 | 97 |
| 96 if (is_android) { | 98 if (is_android) { |
| 97 java_cpp_enum("offline_page_model_enums_java") { | 99 java_cpp_enum("offline_page_model_enums_java") { |
| 98 sources = [ | 100 sources = [ |
| 99 "offline_page_types.h", | 101 "offline_page_types.h", |
| 100 ] | 102 ] |
| 101 } | 103 } |
| 102 } | 104 } |
| OLD | NEW |