| 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 23 matching lines...) Expand all Loading... |
| 34 "offline_page_storage_manager.cc", | 34 "offline_page_storage_manager.cc", |
| 35 "offline_page_storage_manager.h", | 35 "offline_page_storage_manager.h", |
| 36 "offline_page_types.h", | 36 "offline_page_types.h", |
| 37 "snapshot_controller.cc", | 37 "snapshot_controller.cc", |
| 38 "snapshot_controller.h", | 38 "snapshot_controller.h", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 deps = [ | 41 deps = [ |
| 42 ":switches", | 42 ":switches", |
| 43 "//base", | 43 "//base", |
| 44 "//components/bookmarks/browser", | |
| 45 "//components/keyed_service/core", | 44 "//components/keyed_service/core", |
| 46 "//net", | 45 "//net", |
| 47 "//sql:sql", | 46 "//sql:sql", |
| 48 "//url", | 47 "//url", |
| 49 ] | 48 ] |
| 50 } | 49 } |
| 51 | 50 |
| 52 static_library("test_support") { | 51 static_library("test_support") { |
| 53 testonly = true | 52 testonly = true |
| 54 sources = [ | 53 sources = [ |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 106 |
| 108 if (is_android) { | 107 if (is_android) { |
| 109 java_cpp_enum("offline_page_model_enums_java") { | 108 java_cpp_enum("offline_page_model_enums_java") { |
| 110 sources = [ | 109 sources = [ |
| 111 "background/request_queue.h", | 110 "background/request_queue.h", |
| 112 "background/save_page_request.h", | 111 "background/save_page_request.h", |
| 113 "offline_page_types.h", | 112 "offline_page_types.h", |
| 114 ] | 113 ] |
| 115 } | 114 } |
| 116 } | 115 } |
| OLD | NEW |