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

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

Issue 2851303003: Add the download component and initial setup (Closed)
Patch Set: Addressed comments 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
« no previous file with comments | « components/download/OWNERS ('k') | components/download/internal/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 static_library("internal") {
11 visibility = [
12 ":*",
13 "//components/download",
14 ]
15
16 sources = [
17 "download_service_impl.cc",
18 "download_service_impl.h",
19 ]
20
21 deps = [
22 "//base",
23 "//components/download/public",
24 ]
25 }
26
27 source_set("unit_tests") {
28 testonly = true
29
30 visibility = [ "//components/download:unit_tests" ]
31
32 sources = [
33 "download_service_impl_unittest.cc",
34 ]
35
36 deps = [
37 ":internal",
38 "//base/test:test_support",
39 "//testing/gtest",
40 ]
41 }
OLDNEW
« no previous file with comments | « components/download/OWNERS ('k') | components/download/internal/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698