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 # GN version: //components/dom_distiller/webui | 10 # GN version: //components/dom_distiller/webui |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
174 'dom_distiller/content/distiller_page_web_contents.cc', | 174 'dom_distiller/content/distiller_page_web_contents.cc', |
175 'dom_distiller/content/distiller_page_web_contents.h', | 175 'dom_distiller/content/distiller_page_web_contents.h', |
176 'dom_distiller/content/dom_distiller_viewer_source.cc', | 176 'dom_distiller/content/dom_distiller_viewer_source.cc', |
177 'dom_distiller/content/dom_distiller_viewer_source.h', | 177 'dom_distiller/content/dom_distiller_viewer_source.h', |
178 'dom_distiller/content/web_contents_main_frame_observer.cc', | 178 'dom_distiller/content/web_contents_main_frame_observer.cc', |
179 'dom_distiller/content/web_contents_main_frame_observer.h', | 179 'dom_distiller/content/web_contents_main_frame_observer.h', |
180 ], | 180 ], |
181 }, | 181 }, |
182 ], | 182 ], |
183 }], | 183 }], |
184 ['OS=="ios"', { | |
185 'targets': [ | |
186 { | |
187 'target_name': 'dom_distiller_ios', | |
188 'type': 'static_library', | |
189 'dependencies': [ | |
190 '../ios/provider/ios_provider_web.gyp:ios_provider_web', | |
nyquist
2015/02/20 18:55:48
Nit: Could you move this after local reps?
sdefresne
2015/02/23 11:08:57
I've sorted the deps alphabetically as suggested,
| |
191 'components_resources.gyp:components_resources', | |
192 'dom_distiller_core', | |
nyquist
2015/02/20 18:55:48
Not: Alphabetical ordering of local deps
sdefresne
2015/02/23 11:08:57
Ooops, done.
| |
193 'distilled_page_proto', | |
194 ], | |
195 'include_dirs': [ | |
196 '..', | |
197 ], | |
198 'sources': [ | |
199 'dom_distiller/ios/distiller_page_factory_ios.h', | |
200 'dom_distiller/ios/distiller_page_factory_ios.mm', | |
201 'dom_distiller/ios/distiller_page_ios.h', | |
202 'dom_distiller/ios/distiller_page_ios.mm', | |
203 ], | |
204 }, | |
205 ], | |
206 }], | |
184 ['OS=="android"', { | 207 ['OS=="android"', { |
185 'targets': [ | 208 'targets': [ |
186 { | 209 { |
187 # GN: //components/dom_distiller/android:dom_distiller_core_java | 210 # GN: //components/dom_distiller/android:dom_distiller_core_java |
188 'target_name': 'dom_distiller_core_java', | 211 'target_name': 'dom_distiller_core_java', |
189 'type': 'none', | 212 'type': 'none', |
190 'dependencies': [ | 213 'dependencies': [ |
191 'dom_distiller_core_font_family_java', | 214 'dom_distiller_core_font_family_java', |
192 'dom_distiller_core_theme_java', | 215 'dom_distiller_core_theme_java', |
193 '../base/base.gyp:base', | 216 '../base/base.gyp:base', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
236 'template_deps': ['dom_distiller/core/theme_list.h'], | 259 'template_deps': ['dom_distiller/core/theme_list.h'], |
237 }, | 260 }, |
238 'includes': [ '../build/android/java_cpp_template.gypi' ], | 261 'includes': [ '../build/android/java_cpp_template.gypi' ], |
239 }, | 262 }, |
240 ], | 263 ], |
241 }], | 264 }], |
242 ], | 265 ], |
243 }], | 266 }], |
244 ], | 267 ], |
245 } | 268 } |
OLD | NEW |