| 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 # GYP: //components/offline_pages/offline_pages.gypi:background_offliner | 9 # GYP: //components/offline_pages/offline_pages.gypi:background_offliner |
| 10 static_library("background_offliner") { | 10 static_library("background_offliner") { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "//base", | 23 "//base", |
| 24 "//components/offline_pages:offline_pages", | 24 "//components/offline_pages:offline_pages", |
| 25 "//net", | 25 "//net", |
| 26 "//url", | 26 "//url", |
| 27 ] | 27 ] |
| 28 } | 28 } |
| 29 | 29 |
| 30 source_set("unit_tests") { | 30 source_set("unit_tests") { |
| 31 testonly = true | 31 testonly = true |
| 32 sources = [ | 32 sources = [ |
| 33 "request_coordinator_unittest.cc", |
| 33 "save_page_request_unittest.cc", | 34 "save_page_request_unittest.cc", |
| 34 ] | 35 ] |
| 35 | 36 |
| 36 deps = [ | 37 deps = [ |
| 37 ":background_offliner", | 38 ":background_offliner", |
| 38 "//base", | 39 "//base", |
| 39 "//components/offline_pages:offline_pages", | 40 "//components/offline_pages:offline_pages", |
| 40 "//testing/gtest", | 41 "//testing/gtest", |
| 41 "//url", | 42 "//url", |
| 42 ] | 43 ] |
| 43 } | 44 } |
| OLD | NEW |