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

Side by Side Diff: components/nacl/common/nacl_switches.cc

Issue 16881004: Move chrome/nacl to components/nacl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Windows build fix Created 7 years, 6 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
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/nacl/common/nacl_switches.h"
6
7 namespace switches {
8
9 // Causes the process to run as a NativeClient broker
10 // (used for launching NaCl loader processes on 64-bit Windows).
11 const char kNaClBrokerProcess[] = "nacl-broker";
12
13 // Native Client GDB debugger that will be launched automatically when needed.
14 const char kNaClGdb[] = "nacl-gdb";
15
16 // GDB script to pass to the nacl-gdb debugger at startup.
17 const char kNaClGdbScript[] = "nacl-gdb-script";
18
19 // On POSIX only: the contents of this flag are prepended to the nacl-loader
20 // command line. Useful values might be "valgrind" or "xterm -e gdb --args".
21 const char kNaClLoaderCmdPrefix[] = "nacl-loader-cmd-prefix";
22
23 // Causes the process to run as a NativeClient loader.
24 const char kNaClLoaderProcess[] = "nacl-loader";
25
26 // Runs the security test for the NaCl loader sandbox.
27 const char kTestNaClSandbox[] = "test-nacl-sandbox";
28
29 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698