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

Side by Side Diff: components/offline_content/core/BUILD.gn

Issue 2690333002: Initial checkin of OfflineContentProvider. (Closed)
Patch Set: ItemsAvailable -> AreItemsAvailable Created 3 years, 10 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 source_set("core") {
6 sources = [
7 "offline_content_aggregator.cc",
8 "offline_content_aggregator.h",
9 "offline_content_provider.h",
10 "offline_item.cc",
11 "offline_item.h",
12
13 # TODO(dtrainor): Generate the Java version of these enums when the Android
14 # bridge is built.
15 "offline_item_file_extension.h",
16 "offline_item_filter.h",
17 "offline_item_state.h",
18 ]
19
20 deps = [
21 "//base",
22 "//url",
23 ]
24 }
25
26 source_set("unit_tests") {
27 testonly = true
28
29 sources = [
30 "offline_content_aggregator_unittest.cc",
31 ]
32
33 deps = [
34 ":core",
35 "//base/test:test_support",
36 "//components/offline_content/core/test_support",
37 ]
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698