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

Side by Side Diff: components/dom_distiller.gypi

Issue 330833002: Extract protobuf database into a new 'leveldb_proto' component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « components/components_tests.gyp ('k') | components/dom_distiller/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'conditions': [ 6 'conditions': [
7 ['android_webview_build == 0', { 7 ['android_webview_build == 0', {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'dom_distiller_webui', 10 'target_name': 'dom_distiller_webui',
(...skipping 19 matching lines...) Expand all
30 ], 30 ],
31 }, 31 },
32 { 32 {
33 'target_name': 'dom_distiller_core', 33 'target_name': 'dom_distiller_core',
34 'type': 'static_library', 34 'type': 'static_library',
35 'dependencies': [ 35 'dependencies': [
36 '../base/base.gyp:base', 36 '../base/base.gyp:base',
37 '../skia/skia.gyp:skia', 37 '../skia/skia.gyp:skia',
38 '../sync/sync.gyp:sync', 38 '../sync/sync.gyp:sync',
39 '../third_party/dom_distiller_js/dom_distiller_js.gyp:dom_distiller_ js_proto', 39 '../third_party/dom_distiller_js/dom_distiller_js.gyp:dom_distiller_ js_proto',
40 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 40 'components.gyp:leveldb_proto',
41 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
42 'components_resources.gyp:components_resources', 41 'components_resources.gyp:components_resources',
43 'components_strings.gyp:components_strings', 42 'components_strings.gyp:components_strings',
44 'distilled_page_proto', 43 'distilled_page_proto',
45 ], 44 ],
46 'include_dirs': [ 45 'include_dirs': [
47 '..', 46 '..',
48 ], 47 ],
49 'export_dependent_settings': [ 48 'export_dependent_settings': [
50 'distilled_page_proto', 49 'distilled_page_proto',
51 '../third_party/dom_distiller_js/dom_distiller_js.gyp:dom_distiller_ js_proto', 50 '../third_party/dom_distiller_js/dom_distiller_js.gyp:dom_distiller_ js_proto',
52 ], 51 ],
53 'sources': [ 52 'sources': [
54 'dom_distiller/android/component_jni_registrar.cc', 53 'dom_distiller/android/component_jni_registrar.cc',
55 'dom_distiller/android/component_jni_registrar.h', 54 'dom_distiller/android/component_jni_registrar.h',
56 'dom_distiller/core/article_distillation_update.cc', 55 'dom_distiller/core/article_distillation_update.cc',
57 'dom_distiller/core/article_distillation_update.h', 56 'dom_distiller/core/article_distillation_update.h',
58 'dom_distiller/core/article_entry.cc', 57 'dom_distiller/core/article_entry.cc',
59 'dom_distiller/core/article_entry.h', 58 'dom_distiller/core/article_entry.h',
60 'dom_distiller/core/distilled_content_store.cc', 59 'dom_distiller/core/distilled_content_store.cc',
61 'dom_distiller/core/distilled_content_store.h', 60 'dom_distiller/core/distilled_content_store.h',
62 'dom_distiller/core/distiller.cc', 61 'dom_distiller/core/distiller.cc',
63 'dom_distiller/core/distiller.h', 62 'dom_distiller/core/distiller.h',
64 'dom_distiller/core/distiller_page.cc', 63 'dom_distiller/core/distiller_page.cc',
65 'dom_distiller/core/distiller_page.h', 64 'dom_distiller/core/distiller_page.h',
66 'dom_distiller/core/distiller_url_fetcher.cc', 65 'dom_distiller/core/distiller_url_fetcher.cc',
67 'dom_distiller/core/distiller_url_fetcher.h', 66 'dom_distiller/core/distiller_url_fetcher.h',
68 'dom_distiller/core/dom_distiller_constants.cc', 67 'dom_distiller/core/dom_distiller_constants.cc',
69 'dom_distiller/core/dom_distiller_constants.h', 68 'dom_distiller/core/dom_distiller_constants.h',
70 'dom_distiller/core/dom_distiller_database.cc',
71 'dom_distiller/core/dom_distiller_database.h',
72 'dom_distiller/core/dom_distiller_model.cc', 69 'dom_distiller/core/dom_distiller_model.cc',
73 'dom_distiller/core/dom_distiller_model.h', 70 'dom_distiller/core/dom_distiller_model.h',
74 'dom_distiller/core/dom_distiller_observer.h', 71 'dom_distiller/core/dom_distiller_observer.h',
75 'dom_distiller/core/dom_distiller_service.cc', 72 'dom_distiller/core/dom_distiller_service.cc',
76 'dom_distiller/core/dom_distiller_service.h', 73 'dom_distiller/core/dom_distiller_service.h',
77 'dom_distiller/core/dom_distiller_store.cc', 74 'dom_distiller/core/dom_distiller_store.cc',
78 'dom_distiller/core/dom_distiller_store.h', 75 'dom_distiller/core/dom_distiller_store.h',
79 'dom_distiller/core/feedback_reporter.cc', 76 'dom_distiller/core/feedback_reporter.cc',
80 'dom_distiller/core/feedback_reporter.h', 77 'dom_distiller/core/feedback_reporter.h',
81 'dom_distiller/core/task_tracker.cc', 78 'dom_distiller/core/task_tracker.cc',
(...skipping 13 matching lines...) Expand all
95 'dom_distiller_core_jni_headers', 92 'dom_distiller_core_jni_headers',
96 ], 93 ],
97 }], 94 }],
98 ], 95 ],
99 }, 96 },
100 { 97 {
101 'target_name': 'dom_distiller_test_support', 98 'target_name': 'dom_distiller_test_support',
102 'type': 'static_library', 99 'type': 'static_library',
103 'dependencies': [ 100 'dependencies': [
104 'dom_distiller_core', 101 'dom_distiller_core',
102 'components.gyp:leveldb_proto_test_support',
105 '../sync/sync.gyp:sync', 103 '../sync/sync.gyp:sync',
106 '../testing/gmock.gyp:gmock', 104 '../testing/gmock.gyp:gmock',
107 ], 105 ],
108 'include_dirs': [ 106 'include_dirs': [
109 '..', 107 '..',
110 ], 108 ],
111 'sources': [ 109 'sources': [
112 'dom_distiller/core/dom_distiller_test_util.cc', 110 'dom_distiller/core/dom_distiller_test_util.cc',
113 'dom_distiller/core/dom_distiller_test_util.h', 111 'dom_distiller/core/dom_distiller_test_util.h',
114 'dom_distiller/core/fake_db.cc',
115 'dom_distiller/core/fake_db.h',
116 'dom_distiller/core/fake_distiller.cc', 112 'dom_distiller/core/fake_distiller.cc',
117 'dom_distiller/core/fake_distiller.h', 113 'dom_distiller/core/fake_distiller.h',
118 'dom_distiller/core/fake_distiller_page.cc', 114 'dom_distiller/core/fake_distiller_page.cc',
119 'dom_distiller/core/fake_distiller_page.h', 115 'dom_distiller/core/fake_distiller_page.h',
120 ], 116 ],
121 }, 117 },
122 { 118 {
123 'target_name': 'distilled_page_proto', 119 'target_name': 'distilled_page_proto',
124 'type': 'static_library', 120 'type': 'static_library',
125 'sources': [ 121 'sources': [
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 'jni_gen_package': 'dom_distiller_core', 181 'jni_gen_package': 'dom_distiller_core',
186 }, 182 },
187 'includes': [ '../build/jni_generator.gypi' ], 183 'includes': [ '../build/jni_generator.gypi' ],
188 }, 184 },
189 ], 185 ],
190 }], 186 }],
191 ], 187 ],
192 }], 188 }],
193 ], 189 ],
194 } 190 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/dom_distiller/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698