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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 2198143002: Componentize spellcheck [3]: move renderer/ files to component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'chrome_renderer_sources': [ 7 'chrome_renderer_sources': [
8 'renderer/app_categorizer.h', 8 'renderer/app_categorizer.h',
9 'renderer/app_categorizer.cc', 9 'renderer/app_categorizer.cc',
10 'renderer/banners/app_banner_client.cc', 10 'renderer/banners/app_banner_client.cc',
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 'renderer/safe_browsing/phishing_classifier_delegate.h', 204 'renderer/safe_browsing/phishing_classifier_delegate.h',
205 'renderer/safe_browsing/phishing_dom_feature_extractor.cc', 205 'renderer/safe_browsing/phishing_dom_feature_extractor.cc',
206 'renderer/safe_browsing/phishing_dom_feature_extractor.h', 206 'renderer/safe_browsing/phishing_dom_feature_extractor.h',
207 'renderer/safe_browsing/phishing_term_feature_extractor.cc', 207 'renderer/safe_browsing/phishing_term_feature_extractor.cc',
208 'renderer/safe_browsing/phishing_term_feature_extractor.h', 208 'renderer/safe_browsing/phishing_term_feature_extractor.h',
209 'renderer/safe_browsing/phishing_url_feature_extractor.cc', 209 'renderer/safe_browsing/phishing_url_feature_extractor.cc',
210 'renderer/safe_browsing/phishing_url_feature_extractor.h', 210 'renderer/safe_browsing/phishing_url_feature_extractor.h',
211 'renderer/safe_browsing/scorer.cc', 211 'renderer/safe_browsing/scorer.cc',
212 'renderer/safe_browsing/scorer.h', 212 'renderer/safe_browsing/scorer.h',
213 ], 213 ],
214 'chrome_renderer_spellchecker_sources': [
215 'renderer/spellchecker/custom_dictionary_engine.cc',
216 'renderer/spellchecker/custom_dictionary_engine.h',
217 'renderer/spellchecker/hunspell_engine.cc',
218 'renderer/spellchecker/hunspell_engine.h',
219 'renderer/spellchecker/platform_spelling_engine.cc',
220 'renderer/spellchecker/platform_spelling_engine.h',
221 'renderer/spellchecker/spellcheck.cc',
222 'renderer/spellchecker/spellcheck.h',
223 'renderer/spellchecker/spellcheck_language.cc',
224 'renderer/spellchecker/spellcheck_language.h',
225 'renderer/spellchecker/spellcheck_provider.cc',
226 'renderer/spellchecker/spellcheck_provider.h',
227 'renderer/spellchecker/spellcheck_worditerator.cc',
228 'renderer/spellchecker/spellcheck_worditerator.h',
229 'renderer/spellchecker/spelling_engine.h',
230 ],
231 'chrome_renderer_printing_sources': [ 214 'chrome_renderer_printing_sources': [
232 'renderer/printing/chrome_print_web_view_helper_delegate.cc', 215 'renderer/printing/chrome_print_web_view_helper_delegate.cc',
233 'renderer/printing/chrome_print_web_view_helper_delegate.h', 216 'renderer/printing/chrome_print_web_view_helper_delegate.h',
234 ], 217 ],
235 'chrome_renderer_full_printing_sources': [ 218 'chrome_renderer_full_printing_sources': [
236 'renderer/pepper/chrome_pdf_print_client.cc', 219 'renderer/pepper/chrome_pdf_print_client.cc',
237 'renderer/pepper/chrome_pdf_print_client.h', 220 'renderer/pepper/chrome_pdf_print_client.h',
238 ], 221 ],
239 'chrome_renderer_leak_detector_sources': [ 222 'chrome_renderer_leak_detector_sources': [
240 'renderer/leak_detector/leak_detector_remote_client.cc', 223 'renderer/leak_detector/leak_detector_remote_client.cc',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 'sources': [ 333 'sources': [
351 '<@(chrome_renderer_webrtc_sources)', 334 '<@(chrome_renderer_webrtc_sources)',
352 ], 335 ],
353 }], 336 }],
354 ['enable_extensions==1 and enable_webrtc==1', { 337 ['enable_extensions==1 and enable_webrtc==1', {
355 'sources': [ 338 'sources': [
356 '<@(chrome_renderer_webrtc_extensions_sources)', 339 '<@(chrome_renderer_webrtc_extensions_sources)',
357 ], 340 ],
358 }], 341 }],
359 ['enable_spellcheck==1', { 342 ['enable_spellcheck==1', {
360 'sources': [ 343 'dependencies': [ '../components/components.gyp:spellcheck_renderer' ]
361 '<@(chrome_renderer_spellchecker_sources)',
362 ],
363 'conditions': [
364 ['OS!="android"', {
365 'dependencies': [
366 '../third_party/hunspell/hunspell.gyp:hunspell',
367 ],
368 }],
369 ],
370 }],
371 ['use_browser_spellchecker==0', {
372 'sources!': [
373 'renderer/spellchecker/platform_spelling_engine.cc',
374 'renderer/spellchecker/platform_spelling_engine.h',
375 ]
376 }],
377 ['OS=="android"', {
378 'sources!': [
379 'renderer/spellchecker/hunspell_engine.cc',
380 'renderer/spellchecker/hunspell_engine.h',
381 ]
382 }], 344 }],
383 ['enable_basic_printing==1 or enable_print_preview==1', { 345 ['enable_basic_printing==1 or enable_print_preview==1', {
384 'dependencies': [ 346 'dependencies': [
385 '../components/components.gyp:printing_renderer', 347 '../components/components.gyp:printing_renderer',
386 '../printing/printing.gyp:printing', 348 '../printing/printing.gyp:printing',
387 ], 349 ],
388 'sources': [ 350 'sources': [
389 '<@(chrome_renderer_printing_sources)', 351 '<@(chrome_renderer_printing_sources)',
390 ], 352 ],
391 }], 353 }],
(...skipping 17 matching lines...) Expand all
409 ], 371 ],
410 'dependencies': [ 372 'dependencies': [
411 '../components/components.gyp:metrics_leak_detector', 373 '../components/components.gyp:metrics_leak_detector',
412 '../components/components.gyp:metrics_mojo_bindings', 374 '../components/components.gyp:metrics_mojo_bindings',
413 ], 375 ],
414 }], 376 }],
415 ], 377 ],
416 }, 378 },
417 ], 379 ],
418 } 380 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698