| 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", | 14 "client_namespace_constants.cc", |
| 15 "client_namespace_constants.h", | 15 "client_namespace_constants.h", |
| 16 "client_policy_controller.cc", | 16 "client_policy_controller.cc", |
| 17 "client_policy_controller.h", | 17 "client_policy_controller.h", |
| 18 "external_listener.h", |
| 18 "offline_event_logger.cc", | 19 "offline_event_logger.cc", |
| 19 "offline_event_logger.h", | 20 "offline_event_logger.h", |
| 20 "offline_page_archiver.h", | 21 "offline_page_archiver.h", |
| 21 "offline_page_client_policy.h", | 22 "offline_page_client_policy.h", |
| 22 "offline_page_item.cc", | 23 "offline_page_item.cc", |
| 23 "offline_page_item.h", | 24 "offline_page_item.h", |
| 24 "offline_page_metadata_store.cc", | 25 "offline_page_metadata_store.cc", |
| 25 "offline_page_metadata_store.h", | 26 "offline_page_metadata_store.h", |
| 26 "offline_page_metadata_store_sql.cc", | 27 "offline_page_metadata_store_sql.cc", |
| 27 "offline_page_metadata_store_sql.h", | 28 "offline_page_metadata_store_sql.h", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 ] | 106 ] |
| 106 } | 107 } |
| 107 | 108 |
| 108 if (is_android) { | 109 if (is_android) { |
| 109 java_cpp_enum("offline_page_model_enums_java") { | 110 java_cpp_enum("offline_page_model_enums_java") { |
| 110 sources = [ | 111 sources = [ |
| 111 "offline_page_types.h", | 112 "offline_page_types.h", |
| 112 ] | 113 ] |
| 113 } | 114 } |
| 114 } | 115 } |
| OLD | NEW |