blob: e89fa421be8ee9e7d5de14fc625b36adb84e5b89 [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 SRC_LIB_URL_URL_EXPORT_H_
#define SRC_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 // SRC_LIB_URL_URL_EXPORT_H_