blob: da12e685f37b0c2dc9e4a0e4899a73edc0edff38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (c) 2012 The Chromium OS 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 MTPD_BUILD_CONFIG_H_
#define MTPD_BUILD_CONFIG_H_
#if defined(CHROMIUM_BUILD) || defined(GOOGLE_CHROME_BUILD)
#define CHROMIUM_LINUX_BUILD
#else
#define CROS_BUILD
#endif
#endif // MTPD_BUILD_CONFIG_H_
|