| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 if (is_android) { |
| 6 import("//build/config/android/rules.gni") |
| 7 } |
| 8 |
| 9 source_set("background_loader") { |
| 10 sources = [ |
| 11 "background_loader_contents.cc", |
| 12 "background_loader_contents.h", |
| 13 ] |
| 14 |
| 15 deps = [ |
| 16 "//content/public/browser", |
| 17 "//url", |
| 18 ] |
| 19 } |
| 20 |
| 21 source_set("unit_tests") { |
| 22 testonly = true |
| 23 sources = [ |
| 24 "background_loader_contents_unittest.cc", |
| 25 ] |
| 26 deps = [ |
| 27 ":background_loader", |
| 28 "//base", |
| 29 "//content/test:test_support", |
| 30 "//testing/gtest", |
| 31 ] |
| 32 } |
| OLD | NEW |