Chromium Code Reviews| 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/config.gni") | |
| 7 import("//build/config/android/rules.gni") | |
| 8 } | |
| 9 | |
| 10 source_set("content") { | |
| 11 sources = [ | |
| 12 "download_driver_impl.cc", | |
| 13 "download_driver_impl.h", | |
| 14 "driver_entry.cc", | |
|
David Trainor- moved to gerrit
2017/05/18 18:29:43
This needs to be in internal.
xingliu
2017/05/18 22:21:49
Done, good catch.
| |
| 15 "driver_entry.h", | |
| 16 ] | |
| 17 | |
| 18 public_deps = [ | |
| 19 "//components/download/internal", | |
| 20 "//components/download/public", | |
| 21 ] | |
| 22 | |
| 23 deps = [ | |
| 24 "//base", | |
| 25 "//content/public/browser", | |
| 26 "//net", | |
| 27 "//url", | |
| 28 ] | |
| 29 } | |
| 30 | |
| 31 source_set("unit_tests") { | |
| 32 testonly = true | |
| 33 | |
| 34 sources = [ | |
| 35 "download_driver_impl_unittest.cc", | |
| 36 ] | |
| 37 | |
| 38 deps = [ | |
| 39 ":content", | |
| 40 "//content/test:test_support", | |
| 41 "//testing/gmock", | |
| 42 "//testing/gtest", | |
| 43 ] | |
| 44 } | |
| OLD | NEW |