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

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

Issue 362583002: Add more GN deps to the build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « components/dom_distiller/content/BUILD.gn ('k') | components/dom_distiller/core/proto/BUILD.gn » ('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 2014 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 # GYP version: components/dom_distiller.gypi:dom_distiller_core
6 static_library("core") {
7 sources = [
8 "../android/component_jni_registrar.cc",
9 "../android/component_jni_registrar.h",
10 "article_distillation_update.cc",
11 "article_distillation_update.h",
12 "article_entry.cc",
13 "article_entry.h",
14 "distilled_content_store.cc",
15 "distilled_content_store.h",
16 "distiller.cc",
17 "distiller.h",
18 "distiller_page.cc",
19 "distiller_page.h",
20 "distiller_url_fetcher.cc",
21 "distiller_url_fetcher.h",
22 "dom_distiller_constants.cc",
23 "dom_distiller_constants.h",
24 "dom_distiller_model.cc",
25 "dom_distiller_model.h",
26 "dom_distiller_observer.h",
27 "dom_distiller_service.cc",
28 "dom_distiller_service.h",
29 "dom_distiller_store.cc",
30 "dom_distiller_store.h",
31 "feedback_reporter.cc",
32 "feedback_reporter.h",
33 "task_tracker.cc",
34 "task_tracker.h",
35 "url_constants.cc",
36 "url_constants.h",
37 "url_utils_android.cc",
38 "url_utils_android.h",
39 "url_utils.cc",
40 "url_utils.h",
41 "viewer.cc",
42 "viewer.h",
43 ]
44
45 deps = [
46 "//base",
47 "//components/dom_distiller/core/proto",
48 "//components/resources",
49 "//components/strings",
50 "//skia",
51 "//sync",
52 "//third_party/dom_distiller_js/package/proto",
53 #'components.gyp:leveldb_proto', TODO(GYP)
54 ]
55
56 if (is_android) {
57 #deps += [ ":dom_distiller_core_jni_headers" ] TODO(GYP)
58 }
59 }
60
61 # GYP version: components/dom_distiller.gypi:dom_distiller_test_support
62 static_library("test_support") {
63 sources = [
64 "dom_distiller_test_util.cc",
65 "dom_distiller_test_util.h",
66 "fake_distiller.cc",
67 "fake_distiller.h",
68 "fake_distiller_page.cc",
69 "fake_distiller_page.h",
70 ]
71
72 deps = [
73 ":core",
74 #'components.gyp:leveldb_proto_test_support', TODO(GYP)
75 "//sync",
76 "//testing/gmock",
77 ]
78 }
79
OLDNEW
« no previous file with comments | « components/dom_distiller/content/BUILD.gn ('k') | components/dom_distiller/core/proto/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698