| 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 30 matching lines...) Expand all Loading... |
| 41 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 41 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 42 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 42 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| 43 ], | 43 ], |
| 44 'include_dirs': [ | 44 'include_dirs': [ |
| 45 '..', | 45 '..', |
| 46 ], | 46 ], |
| 47 'export_dependent_settings': [ | 47 'export_dependent_settings': [ |
| 48 'distilled_page_proto', | 48 'distilled_page_proto', |
| 49 ], | 49 ], |
| 50 'sources': [ | 50 'sources': [ |
| 51 'dom_distiller/android/component_jni_registrar.cc', | |
| 52 'dom_distiller/android/component_jni_registrar.h', | |
| 53 'dom_distiller/core/article_entry.cc', | 51 'dom_distiller/core/article_entry.cc', |
| 54 'dom_distiller/core/article_entry.h', | 52 'dom_distiller/core/article_entry.h', |
| 55 'dom_distiller/core/distiller.cc', | 53 'dom_distiller/core/distiller.cc', |
| 56 'dom_distiller/core/distiller.h', | 54 'dom_distiller/core/distiller.h', |
| 57 'dom_distiller/core/distiller_page.cc', | 55 'dom_distiller/core/distiller_page.cc', |
| 58 'dom_distiller/core/distiller_page.h', | 56 'dom_distiller/core/distiller_page.h', |
| 59 'dom_distiller/core/distiller_url_fetcher.cc', | 57 'dom_distiller/core/distiller_url_fetcher.cc', |
| 60 'dom_distiller/core/distiller_url_fetcher.h', | 58 'dom_distiller/core/distiller_url_fetcher.h', |
| 61 'dom_distiller/core/dom_distiller_constants.cc', | 59 'dom_distiller/core/dom_distiller_constants.cc', |
| 62 'dom_distiller/core/dom_distiller_constants.h', | 60 'dom_distiller/core/dom_distiller_constants.h', |
| 63 'dom_distiller/core/dom_distiller_database.cc', | 61 'dom_distiller/core/dom_distiller_database.cc', |
| 64 'dom_distiller/core/dom_distiller_database.h', | 62 'dom_distiller/core/dom_distiller_database.h', |
| 65 'dom_distiller/core/dom_distiller_model.cc', | 63 'dom_distiller/core/dom_distiller_model.cc', |
| 66 'dom_distiller/core/dom_distiller_model.h', | 64 'dom_distiller/core/dom_distiller_model.h', |
| 67 'dom_distiller/core/dom_distiller_observer.h', | 65 'dom_distiller/core/dom_distiller_observer.h', |
| 68 'dom_distiller/core/dom_distiller_service.cc', | 66 'dom_distiller/core/dom_distiller_service.cc', |
| 69 'dom_distiller/core/dom_distiller_service.h', | 67 'dom_distiller/core/dom_distiller_service.h', |
| 70 'dom_distiller/core/dom_distiller_store.cc', | 68 'dom_distiller/core/dom_distiller_store.cc', |
| 71 'dom_distiller/core/dom_distiller_store.h', | 69 'dom_distiller/core/dom_distiller_store.h', |
| 72 'dom_distiller/core/page_distiller.cc', | 70 'dom_distiller/core/page_distiller.cc', |
| 73 'dom_distiller/core/page_distiller.h', | 71 'dom_distiller/core/page_distiller.h', |
| 74 'dom_distiller/core/task_tracker.cc', | 72 'dom_distiller/core/task_tracker.cc', |
| 75 'dom_distiller/core/task_tracker.h', | 73 'dom_distiller/core/task_tracker.h', |
| 76 'dom_distiller/core/url_constants.cc', | 74 'dom_distiller/core/url_constants.cc', |
| 77 'dom_distiller/core/url_constants.h', | 75 'dom_distiller/core/url_constants.h', |
| 78 'dom_distiller/core/url_utils_android.cc', | |
| 79 'dom_distiller/core/url_utils_android.h', | |
| 80 'dom_distiller/core/url_utils.cc', | 76 'dom_distiller/core/url_utils.cc', |
| 81 'dom_distiller/core/url_utils.h', | 77 'dom_distiller/core/url_utils.h', |
| 82 ], | 78 ], |
| 83 'conditions': [ | |
| 84 ['OS == "android"', { | |
| 85 'dependencies': [ | |
| 86 'dom_distiller_core_jni_headers', | |
| 87 ], | |
| 88 }], | |
| 89 ], | |
| 90 }, | 79 }, |
| 91 { | 80 { |
| 92 'target_name': 'dom_distiller_test_support', | 81 'target_name': 'dom_distiller_test_support', |
| 93 'type': 'static_library', | 82 'type': 'static_library', |
| 94 'dependencies': [ | 83 'dependencies': [ |
| 95 'dom_distiller_core', | 84 'dom_distiller_core', |
| 96 '../sync/sync.gyp:sync', | 85 '../sync/sync.gyp:sync', |
| 97 '../testing/gmock.gyp:gmock', | 86 '../testing/gmock.gyp:gmock', |
| 98 ], | 87 ], |
| 99 'include_dirs': [ | 88 'include_dirs': [ |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 ], | 130 ], |
| 142 'sources': [ | 131 'sources': [ |
| 143 'dom_distiller/content/distiller_page_web_contents.cc', | 132 'dom_distiller/content/distiller_page_web_contents.cc', |
| 144 'dom_distiller/content/distiller_page_web_contents.h', | 133 'dom_distiller/content/distiller_page_web_contents.h', |
| 145 'dom_distiller/content/dom_distiller_viewer_source.cc', | 134 'dom_distiller/content/dom_distiller_viewer_source.cc', |
| 146 'dom_distiller/content/dom_distiller_viewer_source.h', | 135 'dom_distiller/content/dom_distiller_viewer_source.h', |
| 147 ], | 136 ], |
| 148 }, | 137 }, |
| 149 ], | 138 ], |
| 150 }], | 139 }], |
| 151 ['OS=="android"', { | |
| 152 'targets': [ | |
| 153 { | |
| 154 'target_name': 'dom_distiller_core_java', | |
| 155 'type': 'none', | |
| 156 'dependencies': [ | |
| 157 '../base/base.gyp:base', | |
| 158 ], | |
| 159 'variables': { | |
| 160 'java_in_dir': 'dom_distiller/android/java', | |
| 161 }, | |
| 162 'includes': [ '../build/java.gypi' ], | |
| 163 }, | |
| 164 { | |
| 165 'target_name': 'dom_distiller_core_jni_headers', | |
| 166 'type': 'none', | |
| 167 'sources': [ | |
| 168 'dom_distiller/android/java/src/org/chromium/components/dom_dist
iller/core/DomDistillerUrlUtils.java', | |
| 169 ], | |
| 170 'variables': { | |
| 171 'jni_gen_package': 'dom_distiller_core', | |
| 172 }, | |
| 173 'includes': [ '../build/jni_generator.gypi' ], | |
| 174 }, | |
| 175 ], | |
| 176 }], | |
| 177 ], | 140 ], |
| 178 }], | 141 }], |
| 179 ], | 142 ], |
| 180 } | 143 } |
| OLD | NEW |