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 static_library("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", |
11 "article_distillation_update.h", | 11 "article_distillation_update.h", |
12 "article_entry.cc", | 12 "article_entry.cc", |
13 "article_entry.h", | 13 "article_entry.h", |
14 "distillable_page_detector.cc", | 14 "distillable_page_detector.cc", |
15 "distillable_page_detector.h", | 15 "distillable_page_detector.h", |
16 "distilled_content_store.cc", | 16 "distilled_content_store.cc", |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 | 166 |
167 generate_jni("jni_headers") { | 167 generate_jni("jni_headers") { |
168 sources = [ | 168 sources = [ |
169 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", | 169 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", |
170 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", | 170 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", |
171 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", | 171 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", |
172 ] | 172 ] |
173 jni_package = "dom_distiller_core" | 173 jni_package = "dom_distiller_core" |
174 } | 174 } |
175 } | 175 } |
OLD | NEW |