| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 'link_settings': { | 176 'link_settings': { |
| 178 'mac_bundle_resources': [ | 177 'mac_bundle_resources': [ |
| 179 'renderer/renderer.sb', | 178 'renderer/renderer.sb', |
| 180 ], | 179 ], |
| 181 }, | 180 }, |
| 182 'conditions': [ | 181 'conditions': [ |
| 183 ['disable_nacl!=1', { | 182 ['disable_nacl!=1', { |
| 184 'dependencies': [ | 183 'dependencies': [ |
| 185 'nacl', | 184 'nacl', |
| 186 ], | 185 ], |
| 186 'sources': [ |
| 187 'renderer/nacl_desc_wrapper_chrome.cc', |
| 188 ], |
| 187 }], | 189 }], |
| 188 # Linux-specific rules. | 190 # Linux-specific rules. |
| 189 ['OS=="linux"', { | 191 ['OS=="linux"', { |
| 190 'conditions': [ | 192 'conditions': [ |
| 191 [ 'linux_use_tcmalloc==1', { | 193 [ 'linux_use_tcmalloc==1', { |
| 192 'dependencies': [ | 194 'dependencies': [ |
| 193 '../base/allocator/allocator.gyp:allocator', | 195 '../base/allocator/allocator.gyp:allocator', |
| 194 ], | 196 ], |
| 195 }, | 197 }, |
| 196 ], | 198 ], |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 ], | 236 ], |
| 235 }, | 237 }, |
| 236 ], | 238 ], |
| 237 } | 239 } |
| 238 | 240 |
| 239 # Local Variables: | 241 # Local Variables: |
| 240 # tab-width:2 | 242 # tab-width:2 |
| 241 # indent-tabs-mode:nil | 243 # indent-tabs-mode:nil |
| 242 # End: | 244 # End: |
| 243 # vim: set expandtab tabstop=2 shiftwidth=2: | 245 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |