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 static_library("core") { | 6 static_library("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_distillation_update.cc", | 10 "article_distillation_update.cc", |
11 "article_distillation_update.h", | 11 "article_distillation_update.h", |
12 "article_entry.cc", | 12 "article_entry.cc", |
13 "article_entry.h", | 13 "article_entry.h", |
14 "distilled_content_store.cc", | 14 "distilled_content_store.cc", |
15 "distilled_content_store.h", | 15 "distilled_content_store.h", |
16 "distiller.cc", | 16 "distiller.cc", |
17 "distiller.h", | 17 "distiller.h", |
18 "distiller_page.cc", | 18 "distiller_page.cc", |
19 "distiller_page.h", | 19 "distiller_page.h", |
| 20 "distilled_page_prefs.cc", |
| 21 "distilled_page_prefs.h", |
| 22 "distilled_page_prefs_android.cc", |
| 23 "distilled_page_prefs_android.h", |
20 "distiller_url_fetcher.cc", | 24 "distiller_url_fetcher.cc", |
21 "distiller_url_fetcher.h", | 25 "distiller_url_fetcher.h", |
22 "dom_distiller_constants.cc", | 26 "dom_distiller_constants.cc", |
23 "dom_distiller_constants.h", | 27 "dom_distiller_constants.h", |
24 "dom_distiller_model.cc", | 28 "dom_distiller_model.cc", |
25 "dom_distiller_model.h", | 29 "dom_distiller_model.h", |
26 "dom_distiller_observer.h", | 30 "dom_distiller_observer.h", |
27 "dom_distiller_service.cc", | 31 "dom_distiller_service.cc", |
28 "dom_distiller_service.h", | 32 "dom_distiller_service.h", |
29 "dom_distiller_store.cc", | 33 "dom_distiller_store.cc", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 | 78 |
75 deps = [ | 79 deps = [ |
76 ":core", | 80 ":core", |
77 #'components.gyp:leveldb_proto_test_support', TODO(GYP) | 81 #'components.gyp:leveldb_proto_test_support', TODO(GYP) |
78 "//sync", | 82 "//sync", |
79 "//testing/gmock", | 83 "//testing/gmock", |
80 "//testing/gtest", | 84 "//testing/gtest", |
81 ] | 85 ] |
82 } | 86 } |
83 | 87 |
OLD | NEW |