OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # GYP version: components/dom_distiller.gypi:dom_distiller_core | 5 # GYP version: components/dom_distiller.gypi:dom_distiller_core |
6 source_set("core") { | 6 source_set("core") { |
7 sources = [ | 7 sources = [ |
8 "article_attachments_data.cc", | 8 "article_attachments_data.cc", |
9 "article_attachments_data.h", | 9 "article_attachments_data.h", |
10 "article_distillation_update.cc", | 10 "article_distillation_update.cc", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 "viewer.cc", | 57 "viewer.cc", |
58 "viewer.h", | 58 "viewer.h", |
59 ] | 59 ] |
60 | 60 |
61 public_deps = [ | 61 public_deps = [ |
62 "//components/dom_distiller/core/proto", | 62 "//components/dom_distiller/core/proto", |
63 "//third_party/dom_distiller_js:proto", | 63 "//third_party/dom_distiller_js:proto", |
64 ] | 64 ] |
65 deps = [ | 65 deps = [ |
66 "//base", | 66 "//base", |
67 "//base:prefs", | |
68 "//components/leveldb_proto", | 67 "//components/leveldb_proto", |
69 "//components/pref_registry", | 68 "//components/pref_registry", |
| 69 "//components/prefs", |
70 "//components/resources", | 70 "//components/resources", |
71 "//components/strings", | 71 "//components/strings", |
72 "//components/variations", | 72 "//components/variations", |
73 "//net", | 73 "//net", |
74 "//skia", | 74 "//skia", |
75 "//sync", | 75 "//sync", |
76 "//third_party/re2", | 76 "//third_party/re2", |
77 "//ui/base", | 77 "//ui/base", |
78 "//url", | 78 "//url", |
79 ] | 79 ] |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 | 152 |
153 generate_jni("jni_headers") { | 153 generate_jni("jni_headers") { |
154 sources = [ | 154 sources = [ |
155 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", | 155 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", |
156 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", | 156 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", |
157 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", | 157 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", |
158 ] | 158 ] |
159 jni_package = "dom_distiller_core" | 159 jni_package = "dom_distiller_core" |
160 } | 160 } |
161 } | 161 } |
OLD | NEW |