Fixes for Android GN build input/outputs
[chromium-blink-merge.git] / mojo / shell / switches.cc
blobcd68ff313688cecbda3399561db8ff253c4ae61b
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
3 // found in the LICENSE file.
5 #include "mojo/shell/switches.h"
7 #include "base/basictypes.h"
9 namespace switches {
11 // If set apps downloaded are not deleted.
12 const char kDontDeleteOnDownload[] = "dont-delete-on-download";
14 // Load apps in separate processes.
15 // TODO(vtl): Work in progress; doesn't work. Flip this to "disable" (or maybe
16 // change it to "single-process") when it works.
17 const char kEnableMultiprocess[] = "enable-multiprocess";
19 // If set apps downloaded are saved in with a predictable filename, to help
20 // remote debugging: when gdb is used through gdbserver, it needs to be able to
21 // find locally any loaded library. For this, gdb use the filename of the
22 // library. When using this flag, the application are named with the sha256 of
23 // their content.
24 const char kPredictableAppFilenames[] = "predictable-app-filenames";
26 } // namespace switches