| 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': 'static_library', | 9 'type': 'static_library', |
| 10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', | 10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 'renderer/spellchecker/spellcheck.cc', | 165 'renderer/spellchecker/spellcheck.cc', |
| 166 'renderer/spellchecker/spellcheck.h', | 166 'renderer/spellchecker/spellcheck.h', |
| 167 'renderer/spellchecker/spellcheck_worditerator.cc', | 167 'renderer/spellchecker/spellcheck_worditerator.cc', |
| 168 'renderer/spellchecker/spellcheck_worditerator.h', | 168 'renderer/spellchecker/spellcheck_worditerator.h', |
| 169 'renderer/translate_helper.cc', | 169 'renderer/translate_helper.cc', |
| 170 'renderer/translate_helper.h', | 170 'renderer/translate_helper.h', |
| 171 'renderer/text_input_client_observer.cc', | 171 'renderer/text_input_client_observer.cc', |
| 172 'renderer/text_input_client_observer.h', | 172 'renderer/text_input_client_observer.h', |
| 173 'renderer/visitedlink_slave.cc', | 173 'renderer/visitedlink_slave.cc', |
| 174 'renderer/visitedlink_slave.h', | 174 'renderer/visitedlink_slave.h', |
| 175 'renderer/worker_devtools_agent_proxy.cc', |
| 176 'renderer/worker_devtools_agent_proxy.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', |
| 183 ], | 185 ], |
| 184 }], | 186 }], |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 ], | 265 ], |
| 264 }, | 266 }, |
| 265 ], | 267 ], |
| 266 } | 268 } |
| 267 | 269 |
| 268 # Local Variables: | 270 # Local Variables: |
| 269 # tab-width:2 | 271 # tab-width:2 |
| 270 # indent-tabs-mode:nil | 272 # indent-tabs-mode:nil |
| 271 # End: | 273 # End: |
| 272 # vim: set expandtab tabstop=2 shiftwidth=2: | 274 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |