| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 'nacl/nacl_defines.gypi', | 10 'nacl/nacl_defines.gypi', |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 'defines': [ | 136 'defines': [ |
| 137 '<@(nacl_defines)', | 137 '<@(nacl_defines)', |
| 138 ], | 138 ], |
| 139 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 139 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 140 'msvs_disabled_warnings': [4267, ], | 140 'msvs_disabled_warnings': [4267, ], |
| 141 }, | 141 }, |
| 142 { | 142 { |
| 143 'target_name': 'nacl_renderer', | 143 'target_name': 'nacl_renderer', |
| 144 'type': 'static_library', | 144 'type': 'static_library', |
| 145 'sources': [ | 145 'sources': [ |
| 146 'nacl/renderer/manifest_service_channel.cc', |
| 147 'nacl/renderer/manifest_service_channel.h', |
| 146 'nacl/renderer/nexe_load_manager.cc', | 148 'nacl/renderer/nexe_load_manager.cc', |
| 147 'nacl/renderer/nexe_load_manager.h', | 149 'nacl/renderer/nexe_load_manager.h', |
| 148 'nacl/renderer/pnacl_translation_resource_host.cc', | 150 'nacl/renderer/pnacl_translation_resource_host.cc', |
| 149 'nacl/renderer/pnacl_translation_resource_host.h', | 151 'nacl/renderer/pnacl_translation_resource_host.h', |
| 150 'nacl/renderer/ppb_nacl_private_impl.cc', | 152 'nacl/renderer/ppb_nacl_private_impl.cc', |
| 151 'nacl/renderer/ppb_nacl_private_impl.h', | 153 'nacl/renderer/ppb_nacl_private_impl.h', |
| 152 'nacl/renderer/sandbox_arch.cc', | 154 'nacl/renderer/sandbox_arch.cc', |
| 153 'nacl/renderer/sandbox_arch.h', | 155 'nacl/renderer/sandbox_arch.h', |
| 154 'nacl/renderer/trusted_plugin_channel.cc', | 156 'nacl/renderer/trusted_plugin_channel.cc', |
| 155 'nacl/renderer/trusted_plugin_channel.h', | 157 'nacl/renderer/trusted_plugin_channel.h', |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 'nacl/loader/nonsfi/irt_futex.cc', | 219 'nacl/loader/nonsfi/irt_futex.cc', |
| 218 'nacl/loader/nonsfi/irt_interfaces.cc', | 220 'nacl/loader/nonsfi/irt_interfaces.cc', |
| 219 'nacl/loader/nonsfi/irt_interfaces.h', | 221 'nacl/loader/nonsfi/irt_interfaces.h', |
| 220 'nacl/loader/nonsfi/irt_memory.cc', | 222 'nacl/loader/nonsfi/irt_memory.cc', |
| 221 'nacl/loader/nonsfi/irt_ppapi.cc', | 223 'nacl/loader/nonsfi/irt_ppapi.cc', |
| 222 'nacl/loader/nonsfi/irt_random.cc', | 224 'nacl/loader/nonsfi/irt_random.cc', |
| 223 'nacl/loader/nonsfi/irt_thread.cc', | 225 'nacl/loader/nonsfi/irt_thread.cc', |
| 224 'nacl/loader/nonsfi/irt_util.h', | 226 'nacl/loader/nonsfi/irt_util.h', |
| 225 'nacl/loader/nonsfi/nonsfi_main.cc', | 227 'nacl/loader/nonsfi/nonsfi_main.cc', |
| 226 'nacl/loader/nonsfi/nonsfi_main.h', | 228 'nacl/loader/nonsfi/nonsfi_main.h', |
| 229 '../ppapi/nacl_irt/manifest_service.cc', |
| 230 '../ppapi/nacl_irt/manifest_service.h', |
| 227 '../ppapi/nacl_irt/plugin_main.cc', | 231 '../ppapi/nacl_irt/plugin_main.cc', |
| 228 '../ppapi/nacl_irt/plugin_main.h', | 232 '../ppapi/nacl_irt/plugin_main.h', |
| 229 '../ppapi/nacl_irt/plugin_startup.cc', | 233 '../ppapi/nacl_irt/plugin_startup.cc', |
| 230 '../ppapi/nacl_irt/plugin_startup.h', | 234 '../ppapi/nacl_irt/plugin_startup.h', |
| 231 '../ppapi/nacl_irt/ppapi_dispatcher.cc', | 235 '../ppapi/nacl_irt/ppapi_dispatcher.cc', |
| 232 '../ppapi/nacl_irt/ppapi_dispatcher.h', | 236 '../ppapi/nacl_irt/ppapi_dispatcher.h', |
| 233 ], | 237 ], |
| 234 'conditions': [ | 238 'conditions': [ |
| 235 ['toolkit_uses_gtk == 1', { | 239 ['toolkit_uses_gtk == 1', { |
| 236 'dependencies': [ | 240 'dependencies': [ |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 ], | 413 ], |
| 410 'include_dirs': [ | 414 'include_dirs': [ |
| 411 '..', | 415 '..', |
| 412 ], | 416 ], |
| 413 'dependencies': [ | 417 'dependencies': [ |
| 414 '../content/content.gyp:content_common', | 418 '../content/content.gyp:content_common', |
| 415 ], | 419 ], |
| 416 }, | 420 }, |
| 417 ] | 421 ] |
| 418 } | 422 } |
| OLD | NEW |