| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("background_offliner") { | 9 static_library("background_offliner") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "save_page_request_unittest.cc", | 111 "save_page_request_unittest.cc", |
| 112 ] | 112 ] |
| 113 | 113 |
| 114 deps = [ | 114 deps = [ |
| 115 ":background_offliner", | 115 ":background_offliner", |
| 116 ":test_support", | 116 ":test_support", |
| 117 "//base", | 117 "//base", |
| 118 "//base/test:test_support", | 118 "//base/test:test_support", |
| 119 "//components/offline_pages/core", | 119 "//components/offline_pages/core", |
| 120 "//components/offline_pages/core:switches", | 120 "//components/offline_pages/core:switches", |
| 121 "//sql:sql", |
| 121 "//testing/gtest", | 122 "//testing/gtest", |
| 122 "//url", | 123 "//url", |
| 123 ] | 124 ] |
| 124 } | 125 } |
| OLD | NEW |