Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(590)

Side by Side Diff: components/nacl.gyp

Issue 231793003: Add IPC Channel for new ManifestService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | components/nacl/browser/nacl_process_host.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | components/nacl/browser/nacl_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698