OLD | NEW |
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 21 matching lines...) Expand all Loading... |
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/leveldatabase/leveldatabase.gyp:leveldatabase', | 39 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
40 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 40 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
41 'components_resources.gyp:components_resources', | 41 'components_resources.gyp:components_resources', |
| 42 'components_strings.gyp:components_strings', |
42 'distilled_page_proto', | 43 'distilled_page_proto', |
43 ], | 44 ], |
44 'include_dirs': [ | 45 'include_dirs': [ |
45 '..', | 46 '..', |
46 ], | 47 ], |
47 'export_dependent_settings': [ | 48 'export_dependent_settings': [ |
48 'distilled_page_proto', | 49 'distilled_page_proto', |
49 ], | 50 ], |
50 'sources': [ | 51 'sources': [ |
51 'dom_distiller/android/component_jni_registrar.cc', | 52 'dom_distiller/android/component_jni_registrar.cc', |
(...skipping 24 matching lines...) Expand all Loading... |
76 'dom_distiller/core/page_distiller.cc', | 77 'dom_distiller/core/page_distiller.cc', |
77 'dom_distiller/core/page_distiller.h', | 78 'dom_distiller/core/page_distiller.h', |
78 'dom_distiller/core/task_tracker.cc', | 79 'dom_distiller/core/task_tracker.cc', |
79 'dom_distiller/core/task_tracker.h', | 80 'dom_distiller/core/task_tracker.h', |
80 'dom_distiller/core/url_constants.cc', | 81 'dom_distiller/core/url_constants.cc', |
81 'dom_distiller/core/url_constants.h', | 82 'dom_distiller/core/url_constants.h', |
82 'dom_distiller/core/url_utils_android.cc', | 83 'dom_distiller/core/url_utils_android.cc', |
83 'dom_distiller/core/url_utils_android.h', | 84 'dom_distiller/core/url_utils_android.h', |
84 'dom_distiller/core/url_utils.cc', | 85 'dom_distiller/core/url_utils.cc', |
85 'dom_distiller/core/url_utils.h', | 86 'dom_distiller/core/url_utils.h', |
| 87 'dom_distiller/core/viewer.cc', |
| 88 'dom_distiller/core/viewer.h', |
86 ], | 89 ], |
87 'conditions': [ | 90 'conditions': [ |
88 ['OS == "android"', { | 91 ['OS == "android"', { |
89 'dependencies': [ | 92 'dependencies': [ |
90 'dom_distiller_core_jni_headers', | 93 'dom_distiller_core_jni_headers', |
91 ], | 94 ], |
92 }], | 95 }], |
93 ], | 96 ], |
94 }, | 97 }, |
95 { | 98 { |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 'jni_gen_package': 'dom_distiller_core', | 179 'jni_gen_package': 'dom_distiller_core', |
177 }, | 180 }, |
178 'includes': [ '../build/jni_generator.gypi' ], | 181 'includes': [ '../build/jni_generator.gypi' ], |
179 }, | 182 }, |
180 ], | 183 ], |
181 }], | 184 }], |
182 ], | 185 ], |
183 }], | 186 }], |
184 ], | 187 ], |
185 } | 188 } |
OLD | NEW |