blob: 058d6dbf0e6b743ddbd4127e440ba21e03f4e24f [file] [log] [blame]
// Copyright 2013 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 LIB_URL_URL_EXPORT_H_
#define LIB_URL_URL_EXPORT_H_
#if defined(COMPONENT_BUILD)
#if defined(URL_IMPLEMENTATION)
#define URL_EXPORT __attribute__((visibility("default")))
#else
#define URL_EXPORT
#endif // defined(URL_IMPLEMENTATION)
#else // !defined(COMPONENT_BUILD)
#define URL_EXPORT
#endif // define(COMPONENT_BUILD)
#endif // LIB_URL_URL_EXPORT_H_