| 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 17 matching lines...) Expand all Loading... |
| 28 "//net", | 28 "//net", |
| 29 "//url", | 29 "//url", |
| 30 ] | 30 ] |
| 31 } | 31 } |
| 32 | 32 |
| 33 source_set("unit_tests") { | 33 source_set("unit_tests") { |
| 34 testonly = true | 34 testonly = true |
| 35 sources = [ | 35 sources = [ |
| 36 "request_coordinator_unittest.cc", | 36 "request_coordinator_unittest.cc", |
| 37 "request_queue_in_memory_store_unittest.cc", | 37 "request_queue_in_memory_store_unittest.cc", |
| 38 "request_queue_unittest.cc", |
| 38 "save_page_request_unittest.cc", | 39 "save_page_request_unittest.cc", |
| 39 ] | 40 ] |
| 40 | 41 |
| 41 deps = [ | 42 deps = [ |
| 42 ":background_offliner", | 43 ":background_offliner", |
| 43 "//base", | 44 "//base", |
| 44 "//base/test:test_support", | 45 "//base/test:test_support", |
| 45 "//components/offline_pages:offline_pages", | 46 "//components/offline_pages:offline_pages", |
| 46 "//testing/gtest", | 47 "//testing/gtest", |
| 47 "//url", | 48 "//url", |
| 48 ] | 49 ] |
| 49 } | 50 } |
| OLD | NEW |