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

Side by Side Diff: chrome/chrome_common.gypi

Issue 2159283003: [WIP][DO NOT LAND] Componentize spellcheck Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « chrome/chrome_browser.gypi ('k') | chrome/chrome_renderer.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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'variables': { 6 'variables': {
7 # File lists shared with GN build. 7 # File lists shared with GN build.
8 'chrome_common_sources': [ 8 'chrome_common_sources': [
9 'common/all_messages.h', 9 'common/all_messages.h',
10 'common/attrition_experiments.h', 10 'common/attrition_experiments.h',
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 'common/safe_browsing/safebrowsing_messages.h', 79 'common/safe_browsing/safebrowsing_messages.h',
80 'common/search/instant_types.cc', 80 'common/search/instant_types.cc',
81 'common/search/instant_types.h', 81 'common/search/instant_types.h',
82 'common/search/ntp_logging_events.h', 82 'common/search/ntp_logging_events.h',
83 'common/search/search_types.h', 83 'common/search/search_types.h',
84 'common/search/search_urls.cc', 84 'common/search/search_urls.cc',
85 'common/search/search_urls.h', 85 'common/search/search_urls.h',
86 'common/search_provider.h', 86 'common/search_provider.h',
87 'common/secure_origin_whitelist.cc', 87 'common/secure_origin_whitelist.cc',
88 'common/secure_origin_whitelist.h', 88 'common/secure_origin_whitelist.h',
89 'common/spellcheck_bdict_language.h',
90 'common/spellcheck_common.cc',
91 'common/spellcheck_common.h',
92 'common/spellcheck_marker.h',
93 'common/spellcheck_messages.h',
94 'common/spellcheck_result.h',
95 'common/ssl_insecure_content.cc', 89 'common/ssl_insecure_content.cc',
96 'common/ssl_insecure_content.h', 90 'common/ssl_insecure_content.h',
97 'common/switch_utils.cc', 91 'common/switch_utils.cc',
98 'common/switch_utils.h', 92 'common/switch_utils.h',
99 'common/trace_event_args_whitelist.cc', 93 'common/trace_event_args_whitelist.cc',
100 'common/trace_event_args_whitelist.h', 94 'common/trace_event_args_whitelist.h',
101 'common/tts_messages.h', 95 'common/tts_messages.h',
102 'common/tts_utterance_request.cc', 96 'common/tts_utterance_request.cc',
103 'common/tts_utterance_request.h', 97 'common/tts_utterance_request.h',
104 'common/url_constants.cc', 98 'common/url_constants.cc',
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 ['exclude', '^common/common_message_generator\\.cc$'], 422 ['exclude', '^common/common_message_generator\\.cc$'],
429 ['exclude', '^common/common_param_traits'], 423 ['exclude', '^common/common_param_traits'],
430 ['exclude', '^common/custom_handlers/'], 424 ['exclude', '^common/custom_handlers/'],
431 ['exclude', '^common/extensions/'], 425 ['exclude', '^common/extensions/'],
432 ['exclude', '^common/logging_chrome\\.'], 426 ['exclude', '^common/logging_chrome\\.'],
433 ['exclude', '^common/media/media_resource_provider'], 427 ['exclude', '^common/media/media_resource_provider'],
434 ['exclude', '^common/media_galleries/'], 428 ['exclude', '^common/media_galleries/'],
435 ['exclude', '^common/multi_process_'], 429 ['exclude', '^common/multi_process_'],
436 ['exclude', '^common/profiling\\.'], 430 ['exclude', '^common/profiling\\.'],
437 ['exclude', '^common/resource_usage_reporter_type_converters'], 431 ['exclude', '^common/resource_usage_reporter_type_converters'],
438 ['exclude', '^common/spellcheck_'], 432 # ['exclude', '^common/spellcheck_'],
439 ['exclude', '^common/validation_message_'], 433 ['exclude', '^common/validation_message_'],
440 ['exclude', '^common/web_apps\\.'], 434 ['exclude', '^common/web_apps\\.'],
441 # TODO(ios): Include files here as they are made to work; once 435 # TODO(ios): Include files here as they are made to work; once
442 # everything is online, remove everything below here and just 436 # everything is online, remove everything below here and just
443 # use the exclusions above. 437 # use the exclusions above.
444 ['exclude', '\\.(cc|mm)$'], 438 ['exclude', '\\.(cc|mm)$'],
445 ['include', '_ios\\.(cc|mm)$'], 439 ['include', '_ios\\.(cc|mm)$'],
446 ['include', '(^|/)ios/'], 440 ['include', '(^|/)ios/'],
447 ['include', '^common/chrome_version_info\\.cc$'], 441 ['include', '^common/chrome_version_info\\.cc$'],
448 ['include', '^common/translate'], 442 ['include', '^common/translate'],
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 ], 680 ],
687 'dependencies': [ 681 'dependencies': [
688 'installer_util', 682 'installer_util',
689 '../base/base.gyp:base', 683 '../base/base.gyp:base',
690 ], 684 ],
691 }, 685 },
692 ], 686 ],
693 }], 687 }],
694 ], 688 ],
695 } 689 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698