summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/platform/precompile_platform.h
blob: bbd15745717b616e6a34734ee8478dde4622350f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef THIRD_PARTY_BLINK_RENDERER_PLATFORM_PRECOMPILE_PLATFORM_H_
#error You shouldn't include the precompiled header file more than once.
#endif

#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_PRECOMPILE_PLATFORM_H_

#if defined(_MSC_VER)
#include "third_party/blink/renderer/build/win/precompile.h"
#elif defined(__APPLE__)
#include "third_party/blink/renderer/build/mac/prefix.h"
#else
#error implement
#endif

// Include Oilpan's handle.h by default, as it is included by a significant
// portion of platform/ source files.
#include "third_party/blink/renderer/platform/heap/handle.h"