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

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

Issue 2690333002: Initial checkin of OfflineContentProvider. (Closed)
Patch Set: Address dcheng comments Created 3 years, 9 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") {
brettw 2017/03/06 18:35:50 I'd make this a static library. It will build slig
David Trainor- moved to gerrit 2017/03/06 19:03:21 Done.
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_filter.h",
16 "offline_item_state.h",
17 ]
18
19 deps = [
20 "//base",
21 "//url",
22 ]
23 }
24
25 source_set("unit_tests") {
brettw 2017/03/06 18:35:50 Keep this as-is.
David Trainor- moved to gerrit 2017/03/06 19:03:20 Acknowledged.
26 testonly = true
27
28 sources = [
29 "offline_content_aggregator_unittest.cc",
30 ]
31
32 deps = [
33 ":core",
34 "//base/test:test_support",
35 "//components/offline_items_collection/core/test_support",
36 ]
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698