11cb0ef41Sopenharmony_ci// Copyright 2015 the V8 project authors. All rights reserved. 21cb0ef41Sopenharmony_ci// Use of this source code is governed by a BSD-style license that can be 31cb0ef41Sopenharmony_ci// found in the LICENSE file. 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ci#ifndef V8_INCLUDE_VERSION_H_ // V8_VERSION_H_ conflicts with src/version.h 61cb0ef41Sopenharmony_ci#define V8_INCLUDE_VERSION_H_ 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_ci// These macros define the version number for the current version. 91cb0ef41Sopenharmony_ci// NOTE these macros are used by some of the tool scripts and the build 101cb0ef41Sopenharmony_ci// system so their names cannot be changed without changing the scripts. 111cb0ef41Sopenharmony_ci#define V8_MAJOR_VERSION 11 121cb0ef41Sopenharmony_ci#define V8_MINOR_VERSION 4 131cb0ef41Sopenharmony_ci#define V8_BUILD_NUMBER 183 141cb0ef41Sopenharmony_ci#define V8_PATCH_LEVEL 25 151cb0ef41Sopenharmony_ci 161cb0ef41Sopenharmony_ci#ifdef OHOS_JS_ENGINE 171cb0ef41Sopenharmony_ci#define V8_INNER_VERSION 2 181cb0ef41Sopenharmony_ci#endif 191cb0ef41Sopenharmony_ci 201cb0ef41Sopenharmony_ci// Use 1 for candidates and 0 otherwise. 211cb0ef41Sopenharmony_ci// (Boolean macro values are not supported by all preprocessors.) 221cb0ef41Sopenharmony_ci#define V8_IS_CANDIDATE_VERSION 0 231cb0ef41Sopenharmony_ci 241cb0ef41Sopenharmony_ci#endif // V8_INCLUDE_VERSION_H_ 25