| 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", | |
| 9 "../android/component_jni_registrar.h", | |
| 10 "article_attachments_data.cc", | 8 "article_attachments_data.cc", |
| 11 "article_attachments_data.h", | 9 "article_attachments_data.h", |
| 12 "article_distillation_update.cc", | 10 "article_distillation_update.cc", |
| 13 "article_distillation_update.h", | 11 "article_distillation_update.h", |
| 14 "article_entry.cc", | 12 "article_entry.cc", |
| 15 "article_entry.h", | 13 "article_entry.h", |
| 16 "distillable_page_detector.cc", | 14 "distillable_page_detector.cc", |
| 17 "distillable_page_detector.h", | 15 "distillable_page_detector.h", |
| 18 "distilled_content_store.cc", | 16 "distilled_content_store.cc", |
| 19 "distilled_content_store.h", | 17 "distilled_content_store.h", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "//base", | 66 "//base", |
| 69 "//base:prefs", | 67 "//base:prefs", |
| 70 "//components/leveldb_proto", | 68 "//components/leveldb_proto", |
| 71 "//components/pref_registry", | 69 "//components/pref_registry", |
| 72 "//components/resources", | 70 "//components/resources", |
| 73 "//components/strings", | 71 "//components/strings", |
| 74 "//components/variations", | 72 "//components/variations", |
| 75 "//net", | 73 "//net", |
| 76 "//skia", | 74 "//skia", |
| 77 "//sync", | 75 "//sync", |
| 78 "//sync/protocol", # TODO(brettw) bug 475091: this should be unnecessary. | |
| 79 "//third_party/re2", | 76 "//third_party/re2", |
| 80 "//ui/base", | 77 "//ui/base", |
| 81 "//url", | 78 "//url", |
| 82 ] | 79 ] |
| 83 | 80 |
| 84 if (is_android) { | 81 if (is_android) { |
| 85 sources += [ | 82 sources += [ |
| 86 "dom_distiller_service_android.cc", | 83 "dom_distiller_service_android.cc", |
| 87 "dom_distiller_service_android.h", | 84 "dom_distiller_service_android.h", |
| 88 ] | 85 ] |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 | 152 |
| 156 generate_jni("jni_headers") { | 153 generate_jni("jni_headers") { |
| 157 sources = [ | 154 sources = [ |
| 158 "../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", |
| 159 "../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", |
| 160 "../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", |
| 161 ] | 158 ] |
| 162 jni_package = "dom_distiller_core" | 159 jni_package = "dom_distiller_core" |
| 163 } | 160 } |
| 164 } | 161 } |
| OLD | NEW |