| 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 static_library("core") { | 9 static_library("core") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "//url", | 115 "//url", |
| 116 ] | 116 ] |
| 117 } | 117 } |
| 118 | 118 |
| 119 if (is_android) { | 119 if (is_android) { |
| 120 java_cpp_enum("offline_page_model_enums_java") { | 120 java_cpp_enum("offline_page_model_enums_java") { |
| 121 sources = [ | 121 sources = [ |
| 122 "background/request_notifier.h", | 122 "background/request_notifier.h", |
| 123 "background/request_queue_results.h", | 123 "background/request_queue_results.h", |
| 124 "background/save_page_request.h", | 124 "background/save_page_request.h", |
| 125 "downloads/download_ui_item.h", |
| 125 "offline_page_types.h", | 126 "offline_page_types.h", |
| 126 "offline_store_types.h", | 127 "offline_store_types.h", |
| 127 ] | 128 ] |
| 128 } | 129 } |
| 129 } | 130 } |
| OLD | NEW |