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()12 const uint8_t* DefaultEmbeddedBlob() { return nullptr; }
DefaultEmbeddedBlobSize()13 uint32_t DefaultEmbeddedBlobSize() { return 0; }
14 
15 #ifdef V8_MULTI_SNAPSHOTS
TrustedEmbeddedBlob()16 const uint8_t* TrustedEmbeddedBlob() { return nullptr; }
TrustedEmbeddedBlobSize()17 uint32_t TrustedEmbeddedBlobSize() { return 0; }
18 #endif
19 
20 }  // namespace internal
21 }  // namespace v8
22