| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 source_set("switches") { | 54 source_set("switches") { |
| 55 sources = [ | 55 sources = [ |
| 56 "offline_page_feature.cc", | 56 "offline_page_feature.cc", |
| 57 "offline_page_feature.h", | 57 "offline_page_feature.h", |
| 58 "offline_page_switches.cc", | 58 "offline_page_switches.cc", |
| 59 "offline_page_switches.h", | 59 "offline_page_switches.h", |
| 60 ] | 60 ] |
| 61 | 61 |
| 62 deps = [ | 62 deps = [ |
| 63 "//base", | 63 "//base", |
| 64 "//components/version_info", |
| 64 ] | 65 ] |
| 65 } | 66 } |
| 66 | 67 |
| 67 source_set("unit_tests") { | 68 source_set("unit_tests") { |
| 68 testonly = true | 69 testonly = true |
| 69 sources = [ | 70 sources = [ |
| 70 "offline_page_metadata_store_impl_unittest.cc", | 71 "offline_page_metadata_store_impl_unittest.cc", |
| 71 "offline_page_model_unittest.cc", | 72 "offline_page_model_unittest.cc", |
| 72 ] | 73 ] |
| 73 | 74 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 91 "offline_page_feature.h", | 92 "offline_page_feature.h", |
| 92 ] | 93 ] |
| 93 } | 94 } |
| 94 | 95 |
| 95 java_cpp_enum("offline_page_model_enums_java") { | 96 java_cpp_enum("offline_page_model_enums_java") { |
| 96 sources = [ | 97 sources = [ |
| 97 "offline_page_model.h", | 98 "offline_page_model.h", |
| 98 ] | 99 ] |
| 99 } | 100 } |
| 100 } | 101 } |
| OLD | NEW |