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

Side by Side Diff: chrome/chrome_renderer.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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'renderer', 8 'target_name': 'renderer',
9 'type': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', 10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D',
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 'renderer/security_filter_peer.cc', 163 'renderer/security_filter_peer.cc',
164 'renderer/security_filter_peer.h', 164 'renderer/security_filter_peer.h',
165 'renderer/spellchecker/spellcheck_provider.cc', 165 'renderer/spellchecker/spellcheck_provider.cc',
166 'renderer/spellchecker/spellcheck_provider.h', 166 'renderer/spellchecker/spellcheck_provider.h',
167 'renderer/spellchecker/spellcheck.cc', 167 'renderer/spellchecker/spellcheck.cc',
168 'renderer/spellchecker/spellcheck.h', 168 'renderer/spellchecker/spellcheck.h',
169 'renderer/spellchecker/spellcheck_worditerator.cc', 169 'renderer/spellchecker/spellcheck_worditerator.cc',
170 'renderer/spellchecker/spellcheck_worditerator.h', 170 'renderer/spellchecker/spellcheck_worditerator.h',
171 'renderer/translate_helper.cc', 171 'renderer/translate_helper.cc',
172 'renderer/translate_helper.h', 172 'renderer/translate_helper.h',
173 'renderer/text_input_client_observer.cc',
174 'renderer/text_input_client_observer.h',
173 'renderer/visitedlink_slave.cc', 175 'renderer/visitedlink_slave.cc',
174 'renderer/visitedlink_slave.h', 176 'renderer/visitedlink_slave.h',
175 ], 177 ],
176 'conditions': [ 178 'conditions': [
177 ['disable_nacl!=1', { 179 ['disable_nacl!=1', {
178 'dependencies': [ 180 'dependencies': [
179 'nacl', 181 'nacl',
180 ], 182 ],
181 'sources': [ 183 'sources': [
182 'renderer/nacl_desc_wrapper_chrome.cc', 184 'renderer/nacl_desc_wrapper_chrome.cc',
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 ], 268 ],
267 }, 269 },
268 ], 270 ],
269 } 271 }
270 272
271 # Local Variables: 273 # Local Variables:
272 # tab-width:2 274 # tab-width:2
273 # indent-tabs-mode:nil 275 # indent-tabs-mode:nil
274 # End: 276 # End:
275 # vim: set expandtab tabstop=2 shiftwidth=2: 277 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698