blob: e75481c78ae1120d4bd1e2db7d0c83c4c210f0f4 [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
Igor Murashkinaaebaa02015-01-26 10:55:53 -080021#include "gc/heap.h"
22#include "monitor.h"
23#include "runtime.h"
24#include "trace.h"
25#include "utils.h"
26#include "debugger.h"
27
28namespace art {
29
30// Specify storage for the RuntimeOptions keys.
31
32#define RUNTIME_OPTIONS_KEY(Type, Name, ...) const RuntimeArgumentMap::Key<Type> RuntimeArgumentMap::Name {__VA_ARGS__}; // NOLINT [readability/braces] [4]
33#include "runtime_options.def"
34
35} // namespace art