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

Side by Side Diff: chrome/chrome_common.gypi

Issue 6289009: [Mac] Implement the system dictionary popup by implementing NSTextInput methods. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Create AttributedStringCoder Created 9 years, 8 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'chrome_common_target': 0, 8 'chrome_common_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 10 matching lines...) Expand all
21 ], 21 ],
22 'sources': [ 22 'sources': [
23 # .cc, .h, and .mm files under chrome/common that are used on all 23 # .cc, .h, and .mm files under chrome/common that are used on all
24 # platforms, including both 32-bit and 64-bit Windows. 24 # platforms, including both 32-bit and 64-bit Windows.
25 # Test files are not included. 25 # Test files are not included.
26 'common/about_handler.cc', 26 'common/about_handler.cc',
27 'common/about_handler.h', 27 'common/about_handler.h',
28 'common/app_mode_common_mac.h', 28 'common/app_mode_common_mac.h',
29 'common/app_mode_common_mac.mm', 29 'common/app_mode_common_mac.mm',
30 'common/attrition_experiments.h', 30 'common/attrition_experiments.h',
31 'common/attributed_string_coder.h',
32 'common/attributed_string_coder.mm',
31 'common/auto_start_linux.cc', 33 'common/auto_start_linux.cc',
32 'common/auto_start_linux.h', 34 'common/auto_start_linux.h',
33 'common/autofill_messages.h', 35 'common/autofill_messages.h',
34 'common/bindings_policy.h', 36 'common/bindings_policy.h',
35 'common/child_process_logging.h', 37 'common/child_process_logging.h',
36 'common/child_process_logging_linux.cc', 38 'common/child_process_logging_linux.cc',
37 'common/child_process_logging_mac.mm', 39 'common/child_process_logging_mac.mm',
38 'common/child_process_logging_win.cc', 40 'common/child_process_logging_win.cc',
39 'common/chrome_counters.cc', 41 'common/chrome_counters.cc',
40 'common/chrome_counters.h', 42 'common/chrome_counters.h',
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 'common/service_process_util_linux.cc', 220 'common/service_process_util_linux.cc',
219 'common/service_process_util_mac.mm', 221 'common/service_process_util_mac.mm',
220 'common/service_process_util_posix.cc', 222 'common/service_process_util_posix.cc',
221 'common/service_process_util_posix.h', 223 'common/service_process_util_posix.h',
222 'common/service_process_util_win.cc', 224 'common/service_process_util_win.cc',
223 'common/spellcheck_common.cc', 225 'common/spellcheck_common.cc',
224 'common/spellcheck_common.h', 226 'common/spellcheck_common.h',
225 'common/spellcheck_messages.h', 227 'common/spellcheck_messages.h',
226 'common/sqlite_utils.cc', 228 'common/sqlite_utils.cc',
227 'common/sqlite_utils.h', 229 'common/sqlite_utils.h',
230 'common/text_input_client_messages.cc',
231 'common/text_input_client_messages.h',
228 'common/thumbnail_score.cc', 232 'common/thumbnail_score.cc',
229 'common/thumbnail_score.h', 233 'common/thumbnail_score.h',
230 'common/url_constants.cc', 234 'common/url_constants.cc',
231 'common/url_constants.h', 235 'common/url_constants.h',
232 'common/utility_messages.h', 236 'common/utility_messages.h',
233 'common/view_types.cc', 237 'common/view_types.cc',
234 'common/view_types.h', 238 'common/view_types.h',
235 'common/visitedlink_common.cc', 239 'common/visitedlink_common.cc',
236 'common/visitedlink_common.h', 240 'common/visitedlink_common.h',
237 'common/web_apps.cc', 241 'common/web_apps.cc',
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 'configurations': { 479 'configurations': {
476 'Common_Base': { 480 'Common_Base': {
477 'msvs_target_platform': 'x64', 481 'msvs_target_platform': 'x64',
478 }, 482 },
479 }, 483 },
480 }, 484 },
481 ], 485 ],
482 }], 486 }],
483 ], 487 ],
484 } 488 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698