11cb0ef41Sopenharmony_ci// Copyright 2018 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// Used for building without embedded data. 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ci#include <cstdint> 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ci#include "src/base/macros.h" 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_ciextern "C" const uint8_t* v8_Default_embedded_blob_code_; 121cb0ef41Sopenharmony_ciextern "C" uint32_t v8_Default_embedded_blob_code_size_; 131cb0ef41Sopenharmony_ciextern "C" const uint8_t* v8_Default_embedded_blob_data_; 141cb0ef41Sopenharmony_ciextern "C" uint32_t v8_Default_embedded_blob_data_size_; 151cb0ef41Sopenharmony_ci 161cb0ef41Sopenharmony_ciconst uint8_t* v8_Default_embedded_blob_code_ = nullptr; 171cb0ef41Sopenharmony_ciuint32_t v8_Default_embedded_blob_code_size_ = 0; 181cb0ef41Sopenharmony_ciconst uint8_t* v8_Default_embedded_blob_data_ = nullptr; 191cb0ef41Sopenharmony_ciuint32_t v8_Default_embedded_blob_data_size_ = 0; 20