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 279693002: Split NaCl SFI and non-SFI helpers into separate processes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Refactor IsNonSFIModeEnabled() into nacl/common Created 6 years, 7 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
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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 { 459 {
460 'target_name': 'nacl_common', 460 'target_name': 'nacl_common',
461 'type': 'static_library', 461 'type': 'static_library',
462 'sources': [ 462 'sources': [
463 'nacl/common/nacl_cmd_line.cc', 463 'nacl/common/nacl_cmd_line.cc',
464 'nacl/common/nacl_cmd_line.h', 464 'nacl/common/nacl_cmd_line.h',
465 'nacl/common/nacl_host_messages.h', 465 'nacl/common/nacl_host_messages.h',
466 'nacl/common/nacl_host_messages.cc', 466 'nacl/common/nacl_host_messages.cc',
467 'nacl/common/nacl_messages.cc', 467 'nacl/common/nacl_messages.cc',
468 'nacl/common/nacl_messages.h', 468 'nacl/common/nacl_messages.h',
469 'nacl/common/nacl_nonsfi_util.cc',
470 'nacl/common/nacl_nonsfi_util.h',
469 'nacl/common/nacl_process_type.h', 471 'nacl/common/nacl_process_type.h',
470 'nacl/common/nacl_sandbox_type_mac.h', 472 'nacl/common/nacl_sandbox_type_mac.h',
471 'nacl/common/nacl_types.cc', 473 'nacl/common/nacl_types.cc',
472 'nacl/common/nacl_types.h', 474 'nacl/common/nacl_types.h',
473 'nacl/common/pnacl_types.cc', 475 'nacl/common/pnacl_types.cc',
474 'nacl/common/pnacl_types.h', 476 'nacl/common/pnacl_types.h',
475 ], 477 ],
476 'include_dirs': [ 478 'include_dirs': [
477 '..', 479 '..',
478 ], 480 ],
479 'dependencies': [ 481 'dependencies': [
480 '../content/content.gyp:content_common', 482 '../content/content.gyp:content_common',
481 ], 483 ],
482 }, 484 },
483 ] 485 ]
484 } 486 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698