OLD | NEW |
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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 'renderer/security_filter_peer.cc', | 159 'renderer/security_filter_peer.cc', |
160 'renderer/security_filter_peer.h', | 160 'renderer/security_filter_peer.h', |
161 'renderer/spellchecker/spellcheck_provider.cc', | 161 'renderer/spellchecker/spellcheck_provider.cc', |
162 'renderer/spellchecker/spellcheck_provider.h', | 162 'renderer/spellchecker/spellcheck_provider.h', |
163 'renderer/spellchecker/spellcheck.cc', | 163 'renderer/spellchecker/spellcheck.cc', |
164 'renderer/spellchecker/spellcheck.h', | 164 'renderer/spellchecker/spellcheck.h', |
165 'renderer/spellchecker/spellcheck_worditerator.cc', | 165 'renderer/spellchecker/spellcheck_worditerator.cc', |
166 'renderer/spellchecker/spellcheck_worditerator.h', | 166 'renderer/spellchecker/spellcheck_worditerator.h', |
167 'renderer/translate_helper.cc', | 167 'renderer/translate_helper.cc', |
168 'renderer/translate_helper.h', | 168 'renderer/translate_helper.h', |
| 169 'renderer/text_input_client_observer.cc', |
| 170 'renderer/text_input_client_observer.h', |
169 'renderer/visitedlink_slave.cc', | 171 'renderer/visitedlink_slave.cc', |
170 'renderer/visitedlink_slave.h', | 172 'renderer/visitedlink_slave.h', |
171 ], | 173 ], |
172 'conditions': [ | 174 'conditions': [ |
173 ['disable_nacl!=1', { | 175 ['disable_nacl!=1', { |
174 'dependencies': [ | 176 'dependencies': [ |
175 'nacl', | 177 'nacl', |
176 ], | 178 ], |
177 'sources': [ | 179 'sources': [ |
178 'renderer/nacl_desc_wrapper_chrome.cc', | 180 'renderer/nacl_desc_wrapper_chrome.cc', |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 ], | 266 ], |
265 }, | 267 }, |
266 ], | 268 ], |
267 } | 269 } |
268 | 270 |
269 # Local Variables: | 271 # Local Variables: |
270 # tab-width:2 | 272 # tab-width:2 |
271 # indent-tabs-mode:nil | 273 # indent-tabs-mode:nil |
272 # End: | 274 # End: |
273 # vim: set expandtab tabstop=2 shiftwidth=2: | 275 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |