Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: components/download/content/BUILD.gn

Issue 2880933002: Download driver for components/download. (Closed)
Patch Set: Work on feedbacks. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698