blob: e21587ad1b9b6c759ffbe7df2ed96cb45b535cf8 [file] [log] [blame]
Igor Murashkinaaebaa02015-01-26 10:55:53 -08001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Vladimir Marko9bdf1082016-01-21 12:15:52 +000016
Igor Murashkinaaebaa02015-01-26 10:55:53 -080017#include "runtime_options.h"
18
Vladimir Marko9bdf1082016-01-21 12:15:52 +000019#include <memory>
20
Roland Levillainbdf17372021-05-06 00:19:19 +010021#include "base/fast_exit.h"
David Brazdil2bb2fbd2018-11-13 18:24:26 +000022#include "base/sdk_version.h"
David Sehrc431b9d2018-03-02 12:01:51 -080023#include "base/utils.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070024#include "debugger.h"
Igor Murashkinaaebaa02015-01-26 10:55:53 -080025#include "gc/heap.h"
26#include "monitor.h"
27#include "runtime.h"
Mathieu Chartier3fceaf52017-01-22 13:33:40 -080028#include "thread_list.h"
Igor Murashkinaaebaa02015-01-26 10:55:53 -080029#include "trace.h"
Igor Murashkinaaebaa02015-01-26 10:55:53 -080030
31namespace art {
32
33// Specify storage for the RuntimeOptions keys.
34
Igor Murashkin5573c372017-11-16 13:34:30 -080035#define RUNTIME_OPTIONS_KEY(Type, Name, ...) const RuntimeArgumentMap::Key<Type> RuntimeArgumentMap::Name {__VA_ARGS__};
Igor Murashkinaaebaa02015-01-26 10:55:53 -080036#include "runtime_options.def"
37
38} // namespace art