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 "../android/component_jni_registrar.cc", | 8 "../android/component_jni_registrar.cc", |
9 "../android/component_jni_registrar.h", | 9 "../android/component_jni_registrar.h", |
| 10 "article_attachments_data.cc", |
| 11 "article_attachments_data.h", |
10 "article_distillation_update.cc", | 12 "article_distillation_update.cc", |
11 "article_distillation_update.h", | 13 "article_distillation_update.h", |
12 "article_entry.cc", | 14 "article_entry.cc", |
13 "article_entry.h", | 15 "article_entry.h", |
14 "distilled_content_store.cc", | 16 "distilled_content_store.cc", |
15 "distilled_content_store.h", | 17 "distilled_content_store.h", |
16 "distiller.cc", | 18 "distiller.cc", |
17 "distiller.h", | 19 "distiller.h", |
18 "distiller_page.cc", | 20 "distiller_page.cc", |
19 "distiller_page.h", | 21 "distiller_page.h", |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 | 123 |
122 generate_jni("jni_headers") { | 124 generate_jni("jni_headers") { |
123 sources = [ | 125 sources = [ |
124 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", | 126 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", |
125 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", | 127 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", |
126 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", | 128 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", |
127 ] | 129 ] |
128 jni_package = "dom_distiller_core" | 130 jni_package = "dom_distiller_core" |
129 } | 131 } |
130 } | 132 } |
OLD | NEW |