1 // Copyright 2018 the V8 project authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // Used for building without embedded data. 6 7 #include <cstdint> 8 9 namespace v8 { 10 namespace internal { 11 DefaultEmbeddedBlob()12const uint8_t* DefaultEmbeddedBlob() { return nullptr; } DefaultEmbeddedBlobSize()13uint32_t DefaultEmbeddedBlobSize() { return 0; } 14 15 #ifdef V8_MULTI_SNAPSHOTS TrustedEmbeddedBlob()16const uint8_t* TrustedEmbeddedBlob() { return nullptr; } TrustedEmbeddedBlobSize()17uint32_t TrustedEmbeddedBlobSize() { return 0; } 18 #endif 19 20 } // namespace internal 21 } // namespace v8 22