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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 deps = [ | 63 deps = [ |
64 "//base", | 64 "//base", |
65 "//base:prefs", | 65 "//base:prefs", |
66 "//components/leveldb_proto", | 66 "//components/leveldb_proto", |
67 "//components/pref_registry", | 67 "//components/pref_registry", |
68 "//components/resources", | 68 "//components/resources", |
69 "//components/strings", | 69 "//components/strings", |
70 "//net", | 70 "//net", |
71 "//skia", | 71 "//skia", |
72 "//sync", | 72 "//sync", |
| 73 "//sync/protocol", # TODO(brettw) bug 475091: this should be unnecessary. |
73 "//third_party/re2", | 74 "//third_party/re2", |
74 "//ui/base", | 75 "//ui/base", |
75 "//url", | 76 "//url", |
76 ] | 77 ] |
77 | 78 |
78 if (is_android) { | 79 if (is_android) { |
79 sources += [ | 80 sources += [ |
80 "dom_distiller_service_android.cc", | 81 "dom_distiller_service_android.cc", |
81 "dom_distiller_service_android.h", | 82 "dom_distiller_service_android.h", |
82 ] | 83 ] |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 | 144 |
144 generate_jni("jni_headers") { | 145 generate_jni("jni_headers") { |
145 sources = [ | 146 sources = [ |
146 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", | 147 "../android/java/src/org/chromium/components/dom_distiller/core/DistilledP
agePrefs.java", |
147 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", | 148 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erService.java", |
148 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", | 149 "../android/java/src/org/chromium/components/dom_distiller/core/DomDistill
erUrlUtils.java", |
149 ] | 150 ] |
150 jni_package = "dom_distiller_core" | 151 jni_package = "dom_distiller_core" |
151 } | 152 } |
152 } | 153 } |
OLD | NEW |