blob: 0d8723afb2ca466650c02ea096efe8a5aeaf9cfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (c) 2009 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 CHROME_COMMON_MAC_APP_NAMES_H_
#define CHROME_COMMON_MAC_APP_NAMES_H_
#if !defined(UNIT_TEST)
#error Don't use this file outside of tests
#endif
#if defined(GOOGLE_CHROME_BUILD)
#define MAC_BROWSER_APP_NAME "Google Chrome.app"
#define MAC_FRAMEWORK_NAME "Google Chrome Framework.framework"
#elif defined(CHROMIUM_BUILD)
#define MAC_BROWSER_APP_NAME "Chromium.app"
#define MAC_FRAMEWORK_NAME "Chromium Framework.framework"
#else
#error Not sure what the branding is!
#endif
#endif // CHROME_COMMON_MAC_APP_NAMES_H_
|