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

Side by Side Diff: components/nacl.gyp

Issue 249183004: Implement open_resource in non-SFI mode. (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/loader/nonsfi/irt_interfaces.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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 'nacl/loader/nonsfi/elf_loader.h', 230 'nacl/loader/nonsfi/elf_loader.h',
231 'nacl/loader/nonsfi/irt_basic.cc', 231 'nacl/loader/nonsfi/irt_basic.cc',
232 'nacl/loader/nonsfi/irt_clock.cc', 232 'nacl/loader/nonsfi/irt_clock.cc',
233 'nacl/loader/nonsfi/irt_fdio.cc', 233 'nacl/loader/nonsfi/irt_fdio.cc',
234 'nacl/loader/nonsfi/irt_futex.cc', 234 'nacl/loader/nonsfi/irt_futex.cc',
235 'nacl/loader/nonsfi/irt_interfaces.cc', 235 'nacl/loader/nonsfi/irt_interfaces.cc',
236 'nacl/loader/nonsfi/irt_interfaces.h', 236 'nacl/loader/nonsfi/irt_interfaces.h',
237 'nacl/loader/nonsfi/irt_memory.cc', 237 'nacl/loader/nonsfi/irt_memory.cc',
238 'nacl/loader/nonsfi/irt_ppapi.cc', 238 'nacl/loader/nonsfi/irt_ppapi.cc',
239 'nacl/loader/nonsfi/irt_random.cc', 239 'nacl/loader/nonsfi/irt_random.cc',
240 'nacl/loader/nonsfi/irt_resource_open.cc',
Junichi Uekawa 2014/04/23 22:19:30 I think you forgot to inlcude irt_resource_open.cc
hidehiko 2014/04/24 16:07:31 Oops. Done.
240 'nacl/loader/nonsfi/irt_thread.cc', 241 'nacl/loader/nonsfi/irt_thread.cc',
241 'nacl/loader/nonsfi/irt_util.h', 242 'nacl/loader/nonsfi/irt_util.h',
242 'nacl/loader/nonsfi/nonsfi_main.cc', 243 'nacl/loader/nonsfi/nonsfi_main.cc',
243 'nacl/loader/nonsfi/nonsfi_main.h', 244 'nacl/loader/nonsfi/nonsfi_main.h',
244 'nacl/loader/nonsfi/nonsfi_sandbox.cc', 245 'nacl/loader/nonsfi/nonsfi_sandbox.cc',
245 'nacl/loader/nonsfi/nonsfi_sandbox.h', 246 'nacl/loader/nonsfi/nonsfi_sandbox.h',
247 '../ppapi/nacl_irt/irt_manifest.cc',
248 '../ppapi/nacl_irt/irt_manifest.h',
246 '../ppapi/nacl_irt/manifest_service.cc', 249 '../ppapi/nacl_irt/manifest_service.cc',
247 '../ppapi/nacl_irt/manifest_service.h', 250 '../ppapi/nacl_irt/manifest_service.h',
248 '../ppapi/nacl_irt/plugin_main.cc', 251 '../ppapi/nacl_irt/plugin_main.cc',
249 '../ppapi/nacl_irt/plugin_main.h', 252 '../ppapi/nacl_irt/plugin_main.h',
250 '../ppapi/nacl_irt/plugin_startup.cc', 253 '../ppapi/nacl_irt/plugin_startup.cc',
251 '../ppapi/nacl_irt/plugin_startup.h', 254 '../ppapi/nacl_irt/plugin_startup.h',
252 '../ppapi/nacl_irt/ppapi_dispatcher.cc', 255 '../ppapi/nacl_irt/ppapi_dispatcher.cc',
253 '../ppapi/nacl_irt/ppapi_dispatcher.h', 256 '../ppapi/nacl_irt/ppapi_dispatcher.h',
254 ], 257 ],
255 'dependencies': [ 258 'dependencies': [
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 ], 451 ],
449 'include_dirs': [ 452 'include_dirs': [
450 '..', 453 '..',
451 ], 454 ],
452 'dependencies': [ 455 'dependencies': [
453 '../content/content.gyp:content_common', 456 '../content/content.gyp:content_common',
454 ], 457 ],
455 }, 458 },
456 ] 459 ]
457 } 460 }
OLDNEW
« no previous file with comments | « no previous file | components/nacl/loader/nonsfi/irt_interfaces.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698