chromium/v8/src/utils/version.cc

// Copyright 2012 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/utils/version.h"

#include "include/v8-version-string.h"
#include "include/v8-version.h"
#include "src/base/strings.h"

// Define SONAME to have the build system put a specific SONAME into the
// shared library instead the generic SONAME generated from the V8 version
// number. This define is mainly used by the build system script.
#define SONAME

namespace v8 {
namespace internal {

int Version::major_ =;
int Version::minor_ =;
int Version::build_ =;
int Version::patch_ =;
const char* Version::embedder_ =;
bool Version::candidate_ =;
const char* Version::soname_ =;
const char* Version::version_string_ =;

// Calculate the V8 version string.
void Version::GetString(base::Vector<char> str) {}

// Calculate the SONAME for the V8 shared library.
void Version::GetSONAME(base::Vector<char> str) {}

#undef SONAME

}  // namespace internal
}  // namespace v8