| 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", | 10 "article_attachments_data.cc", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "distiller.h", | 25 "distiller.h", |
| 26 "distiller_page.cc", | 26 "distiller_page.cc", |
| 27 "distiller_page.h", | 27 "distiller_page.h", |
| 28 "distiller_url_fetcher.cc", | 28 "distiller_url_fetcher.cc", |
| 29 "distiller_url_fetcher.h", | 29 "distiller_url_fetcher.h", |
| 30 "dom_distiller_constants.cc", | 30 "dom_distiller_constants.cc", |
| 31 "dom_distiller_constants.h", | 31 "dom_distiller_constants.h", |
| 32 "dom_distiller_model.cc", | 32 "dom_distiller_model.cc", |
| 33 "dom_distiller_model.h", | 33 "dom_distiller_model.h", |
| 34 "dom_distiller_observer.h", | 34 "dom_distiller_observer.h", |
| 35 "dom_distiller_request_view_base.cc", |
| 36 "dom_distiller_request_view_base.h", |
| 35 "dom_distiller_service.cc", | 37 "dom_distiller_service.cc", |
| 36 "dom_distiller_service.h", | 38 "dom_distiller_service.h", |
| 37 "dom_distiller_store.cc", | 39 "dom_distiller_store.cc", |
| 38 "dom_distiller_store.h", | 40 "dom_distiller_store.h", |
| 39 "dom_distiller_switches.cc", | 41 "dom_distiller_switches.cc", |
| 40 "dom_distiller_switches.h", | 42 "dom_distiller_switches.h", |
| 41 "experiments.cc", | 43 "experiments.cc", |
| 42 "experiments.h", | 44 "experiments.h", |
| 43 "external_feedback_reporter.h", | 45 "external_feedback_reporter.h", |
| 44 "feedback_reporter.cc", | 46 "feedback_reporter.cc", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 147 |
| 146 generate_jni("jni_headers") { | 148 generate_jni("jni_headers") { |
| 147 sources = [ | 149 sources = [ |
| 148 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", | 150 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", |
| 149 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", | 151 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", |
| 150 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", | 152 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", |
| 151 ] | 153 ] |
| 152 jni_package = "dom_distiller_core" | 154 jni_package = "dom_distiller_core" |
| 153 } | 155 } |
| 154 } | 156 } |
| OLD | NEW |