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

Side by Side Diff: chrome/chrome_common.gypi

Issue 2177343002: Componentize spellcheck [2]: move common/ files to component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix mac bots a bit more 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
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_'],
439 ['exclude', '^common/validation_message_'], 432 ['exclude', '^common/validation_message_'],
440 ['exclude', '^common/web_apps\\.'], 433 ['exclude', '^common/web_apps\\.'],
441 # TODO(ios): Include files here as they are made to work; once 434 # TODO(ios): Include files here as they are made to work; once
442 # everything is online, remove everything below here and just 435 # everything is online, remove everything below here and just
443 # use the exclusions above. 436 # use the exclusions above.
444 ['exclude', '\\.(cc|mm)$'], 437 ['exclude', '\\.(cc|mm)$'],
445 ['include', '_ios\\.(cc|mm)$'], 438 ['include', '_ios\\.(cc|mm)$'],
446 ['include', '(^|/)ios/'], 439 ['include', '(^|/)ios/'],
447 ['include', '^common/chrome_version_info\\.cc$'], 440 ['include', '^common/chrome_version_info\\.cc$'],
448 ['include', '^common/translate'], 441 ['include', '^common/translate'],
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 ], 698 ],
706 'dependencies': [ 699 'dependencies': [
707 'installer_util', 700 'installer_util',
708 '../base/base.gyp:base', 701 '../base/base.gyp:base',
709 ], 702 ],
710 }, 703 },
711 ], 704 ],
712 }], 705 }],
713 ], 706 ],
714 } 707 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698