| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2017 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("prefetch") { |
| 10 sources = [ |
| 11 "prefetch_gcm_app_handler.cc", |
| 12 "prefetch_gcm_app_handler.h", |
| 13 ] |
| 14 |
| 15 deps = [ |
| 16 "//base", |
| 17 "//chrome/browser/android", |
| 18 "//components/gcm_driver", |
| 19 "//content/public/browser", |
| 20 ] |
| 21 } |
| 22 |
| 23 source_set("unit_tests") { |
| 24 testonly = true |
| 25 sources = [] |
| 26 deps = [ |
| 27 ":prefetch", |
| 28 "//testing/gtest", |
| 29 ] |
| 30 } |
| OLD | NEW |