OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "remoting/host/constants_mac.h" | 5 #include "remoting/host/constants_mac.h" |
6 | 6 |
| 7 #if defined(GN_BUILD) |
| 8 #include "remoting/host/version.h" |
| 9 #endif |
| 10 |
7 namespace remoting { | 11 namespace remoting { |
8 | 12 |
9 #define SERVICE_NAME "org.chromium.chromoting" | 13 #define SERVICE_NAME "org.chromium.chromoting" |
10 | 14 |
11 #define APPLICATIONS_DIR "/Applications/" | 15 #define APPLICATIONS_DIR "/Applications/" |
12 #define HELPER_TOOLS_DIR "/Library/PrivilegedHelperTools/" | 16 #define HELPER_TOOLS_DIR "/Library/PrivilegedHelperTools/" |
13 #define LAUNCH_AGENTS_DIR "/Library/LaunchAgents/" | 17 #define LAUNCH_AGENTS_DIR "/Library/LaunchAgents/" |
14 #define PREFERENCE_PANES_DIR "/Library/PreferencePanes/" | 18 #define PREFERENCE_PANES_DIR "/Library/PreferencePanes/" |
15 #define LOG_DIR "/var/log/" | 19 #define LOG_DIR "/var/log/" |
16 #define LOG_CONFIG_DIR "/etc/newsyslog.d/" | 20 #define LOG_CONFIG_DIR "/etc/newsyslog.d/" |
(...skipping 18 matching lines...) Expand all Loading... |
35 const char kNativeMessagingManifestPath[] = | 39 const char kNativeMessagingManifestPath[] = |
36 "/Library/Google/Chrome/NativeMessagingHosts/" | 40 "/Library/Google/Chrome/NativeMessagingHosts/" |
37 "com.google.chrome.remote_desktop.json"; | 41 "com.google.chrome.remote_desktop.json"; |
38 | 42 |
39 const char kBrandedUninstallerPath[] = APPLICATIONS_DIR | 43 const char kBrandedUninstallerPath[] = APPLICATIONS_DIR |
40 "Chrome Remote Desktop Host Uninstaller.app"; | 44 "Chrome Remote Desktop Host Uninstaller.app"; |
41 const char kUnbrandedUninstallerPath[] = APPLICATIONS_DIR | 45 const char kUnbrandedUninstallerPath[] = APPLICATIONS_DIR |
42 "Chromoting Host Uninstaller.app"; | 46 "Chromoting Host Uninstaller.app"; |
43 | 47 |
44 } // namespace remoting | 48 } // namespace remoting |
OLD | NEW |