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

Side by Side Diff: components/offline_pages/downloads/BUILD.gn

Issue 2176013002: Add support for OfflinePagesDownloadBridge. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CR feedback and tests. Created 4 years, 4 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 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 # GYP: //components/offline_pages.gypi:offline_pages_ui_adapter
10 static_library("offline_pages_ui_adapter") {
11 sources = [
12 "download_ui_adapter.cc",
13 "download_ui_adapter.h",
14 "download_ui_item.cc",
15 "download_ui_item.h",
16 ]
17
18 deps = [
19 "//base",
20 "//components/offline_pages:offline_pages",
21 ]
22 }
23
24 source_set("unit_tests") {
25 testonly = true
26 sources = [
27 "download_ui_adapter_unittest.cc",
28 ]
29
30 deps = [
31 ":offline_pages_ui_adapter",
32 "//base",
33 "//base/test:test_support",
34 "//components/offline_pages:offline_pages",
35 "//testing/gtest",
36 ]
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698