Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Side by Side Diff: components/dom_distiller/core/BUILD.gn

Issue 1101993003: Move common distiller code to superclass (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698