blob: 528dfe220bf2434147ae4639228bac76464bf5ed [file] [log] [blame]
// Copyright 2014 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.
#ifndef PPAPI_SHARED_IMPL_PPAPI_CONSTANTS_H_
#define PPAPI_SHARED_IMPL_PPAPI_CONSTANTS_H_
#include "build/build_config.h"
#include "ppapi/shared_impl/ppapi_shared_export.h"
namespace ppapi {
#if BUILDFLAG(IS_WIN)
const char kCorbTestPluginName[] = "corb_test_plugin.dll";
#elif BUILDFLAG(IS_MAC)
const char kCorbTestPluginName[] = "corb_test_plugin.plugin";
#elif BUILDFLAG(IS_POSIX)
const char kCorbTestPluginName[] = "libcorb_test_plugin.so";
#endif
} // namespace ppapi
#endif // PPAPI_SHARED_IMPL_PPAPI_CONSTANTS_H_