| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 'renderer/external_extension.cc', | 95 'renderer/external_extension.cc', |
| 96 'renderer/external_extension.h', | 96 'renderer/external_extension.h', |
| 97 'renderer/form_manager.cc', | 97 'renderer/form_manager.cc', |
| 98 'renderer/form_manager.h', | 98 'renderer/form_manager.h', |
| 99 'renderer/geolocation_dispatcher.cc', | 99 'renderer/geolocation_dispatcher.cc', |
| 100 'renderer/geolocation_dispatcher.h', | 100 'renderer/geolocation_dispatcher.h', |
| 101 'renderer/gpu_channel_host.cc', | 101 'renderer/gpu_channel_host.cc', |
| 102 'renderer/gpu_channel_host.h', | 102 'renderer/gpu_channel_host.h', |
| 103 'renderer/localized_error.cc', | 103 'renderer/localized_error.cc', |
| 104 'renderer/localized_error.h', | 104 'renderer/localized_error.h', |
| 105 'renderer/nacl_desc_wrapper_chrome.cc', | |
| 106 'renderer/navigation_state.h', | 105 'renderer/navigation_state.h', |
| 107 'renderer/notification_provider.cc', | 106 'renderer/notification_provider.cc', |
| 108 'renderer/notification_provider.h', | 107 'renderer/notification_provider.h', |
| 109 'renderer/paint_aggregator.cc', | 108 'renderer/paint_aggregator.cc', |
| 110 'renderer/pepper_devices.cc', | 109 'renderer/pepper_devices.cc', |
| 111 'renderer/pepper_devices.h', | 110 'renderer/pepper_devices.h', |
| 112 'renderer/plugin_channel_host.cc', | 111 'renderer/plugin_channel_host.cc', |
| 113 'renderer/plugin_channel_host.h', | 112 'renderer/plugin_channel_host.h', |
| 114 'renderer/print_web_view_helper.cc', | 113 'renderer/print_web_view_helper.cc', |
| 115 'renderer/print_web_view_helper.h', | 114 'renderer/print_web_view_helper.h', |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 'link_settings': { | 178 'link_settings': { |
| 180 'mac_bundle_resources': [ | 179 'mac_bundle_resources': [ |
| 181 'renderer/renderer.sb', | 180 'renderer/renderer.sb', |
| 182 ], | 181 ], |
| 183 }, | 182 }, |
| 184 'conditions': [ | 183 'conditions': [ |
| 185 ['disable_nacl!=1', { | 184 ['disable_nacl!=1', { |
| 186 'dependencies': [ | 185 'dependencies': [ |
| 187 'nacl', | 186 'nacl', |
| 188 ], | 187 ], |
| 188 'sources': [ |
| 189 'renderer/nacl_desc_wrapper_chrome.cc', |
| 190 ], |
| 189 }], | 191 }], |
| 190 # Linux-specific rules. | 192 # Linux-specific rules. |
| 191 ['OS=="linux"', { | 193 ['OS=="linux"', { |
| 192 'conditions': [ | 194 'conditions': [ |
| 193 [ 'linux_use_tcmalloc==1', { | 195 [ 'linux_use_tcmalloc==1', { |
| 194 'dependencies': [ | 196 'dependencies': [ |
| 195 '../base/allocator/allocator.gyp:allocator', | 197 '../base/allocator/allocator.gyp:allocator', |
| 196 ], | 198 ], |
| 197 }, | 199 }, |
| 198 ], | 200 ], |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 ], | 238 ], |
| 237 }, | 239 }, |
| 238 ], | 240 ], |
| 239 } | 241 } |
| 240 | 242 |
| 241 # Local Variables: | 243 # Local Variables: |
| 242 # tab-width:2 | 244 # tab-width:2 |
| 243 # indent-tabs-mode:nil | 245 # indent-tabs-mode:nil |
| 244 # End: | 246 # End: |
| 245 # vim: set expandtab tabstop=2 shiftwidth=2: | 247 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |