| 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 11 matching lines...) Expand all Loading... |
| 22 "distilled_page_prefs_android.cc", | 22 "distilled_page_prefs_android.cc", |
| 23 "distilled_page_prefs_android.h", | 23 "distilled_page_prefs_android.h", |
| 24 "distiller.cc", | 24 "distiller.cc", |
| 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_features.cc", |
| 33 "dom_distiller_features.h", |
| 32 "dom_distiller_model.cc", | 34 "dom_distiller_model.cc", |
| 33 "dom_distiller_model.h", | 35 "dom_distiller_model.h", |
| 34 "dom_distiller_observer.h", | 36 "dom_distiller_observer.h", |
| 35 "dom_distiller_request_view_base.cc", | 37 "dom_distiller_request_view_base.cc", |
| 36 "dom_distiller_request_view_base.h", | 38 "dom_distiller_request_view_base.h", |
| 37 "dom_distiller_service.cc", | 39 "dom_distiller_service.cc", |
| 38 "dom_distiller_service.h", | 40 "dom_distiller_service.h", |
| 39 "dom_distiller_store.cc", | 41 "dom_distiller_store.cc", |
| 40 "dom_distiller_store.h", | 42 "dom_distiller_store.h", |
| 41 "dom_distiller_switches.cc", | 43 "dom_distiller_switches.cc", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 62 "//components/dom_distiller/core/proto", | 64 "//components/dom_distiller/core/proto", |
| 63 "//third_party/dom_distiller_js:proto", | 65 "//third_party/dom_distiller_js:proto", |
| 64 ] | 66 ] |
| 65 deps = [ | 67 deps = [ |
| 66 "//base", | 68 "//base", |
| 67 "//base:prefs", | 69 "//base:prefs", |
| 68 "//components/leveldb_proto", | 70 "//components/leveldb_proto", |
| 69 "//components/pref_registry", | 71 "//components/pref_registry", |
| 70 "//components/resources", | 72 "//components/resources", |
| 71 "//components/strings", | 73 "//components/strings", |
| 74 "//components/variations", |
| 72 "//net", | 75 "//net", |
| 73 "//skia", | 76 "//skia", |
| 74 "//sync", | 77 "//sync", |
| 75 "//sync/protocol", # TODO(brettw) bug 475091: this should be unnecessary. | 78 "//sync/protocol", # TODO(brettw) bug 475091: this should be unnecessary. |
| 76 "//third_party/re2", | 79 "//third_party/re2", |
| 77 "//ui/base", | 80 "//ui/base", |
| 78 "//url", | 81 "//url", |
| 79 ] | 82 ] |
| 80 | 83 |
| 81 if (is_android) { | 84 if (is_android) { |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 153 |
| 151 generate_jni("jni_headers") { | 154 generate_jni("jni_headers") { |
| 152 sources = [ | 155 sources = [ |
| 153 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", | 156 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", |
| 154 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", | 157 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", |
| 155 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", | 158 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", |
| 156 ] | 159 ] |
| 157 jni_package = "dom_distiller_core" | 160 jni_package = "dom_distiller_core" |
| 158 } | 161 } |
| 159 } | 162 } |
| OLD | NEW |