Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Side by Side Diff: remoting/remoting_host_mac.gypi

Issue 896743004: [Chromoting] Remove wildcard ('*') from remoting_all target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 { 5 {
6 'variables': {
7 'remoting_host_installer_mac_roots': [
8 'host/installer/mac/',
9 '<(DEPTH)/chrome/installer/mac/',
10 ],
11 'remoting_host_installer_mac_files': [
12 'host/installer/mac/do_signing.sh',
13 'host/installer/mac/do_signing.props',
14 'host/installer/mac/ChromotingHost.pkgproj',
15 'host/installer/mac/ChromotingHostService.pkgproj',
16 'host/installer/mac/ChromotingHostUninstaller.pkgproj',
17 'host/installer/mac/LaunchAgents/org.chromium.chromoting.plist',
18 'host/installer/mac/PrivilegedHelperTools/org.chromium.chromoting.me2me.sh ',
19 'host/installer/mac/Config/org.chromium.chromoting.conf',
20 'host/installer/mac/Scripts/keystone_install.sh',
21 'host/installer/mac/Scripts/remoting_postflight.sh',
22 'host/installer/mac/Scripts/remoting_preflight.sh',
23 'host/installer/mac/Keystone/GoogleSoftwareUpdate.pkg',
24 '<(DEPTH)/chrome/installer/mac/pkg-dmg',
25 ],
26 },
27
28 'conditions': [ 6 'conditions': [
29 ['OS=="mac"', { 7 ['OS=="mac"', {
8
9 'variables': {
garykac 2015/02/03 23:44:56 Moved for consistency with the other platform-spec
10 'remoting_host_installer_mac_roots': [
11 'host/installer/mac/',
12 '<(DEPTH)/chrome/installer/mac/',
13 ],
14 'remoting_host_installer_mac_files': [
15 'host/installer/mac/do_signing.sh',
16 'host/installer/mac/do_signing.props',
17 'host/installer/mac/ChromotingHost.pkgproj',
18 'host/installer/mac/ChromotingHostService.pkgproj',
19 'host/installer/mac/ChromotingHostUninstaller.pkgproj',
20 'host/installer/mac/LaunchAgents/org.chromium.chromoting.plist',
21 'host/installer/mac/PrivilegedHelperTools/org.chromium.chromoting.me2m e.sh',
22 'host/installer/mac/Config/org.chromium.chromoting.conf',
23 'host/installer/mac/Scripts/keystone_install.sh',
24 'host/installer/mac/Scripts/remoting_postflight.sh',
25 'host/installer/mac/Scripts/remoting_preflight.sh',
26 'host/installer/mac/Keystone/GoogleSoftwareUpdate.pkg',
27 '<(DEPTH)/chrome/installer/mac/pkg-dmg',
28 ],
29 },
30
30 'targets': [ 31 'targets': [
31 { 32 {
32 'target_name': 'remoting_host_uninstaller', 33 'target_name': 'remoting_host_uninstaller',
33 'type': 'executable', 34 'type': 'executable',
34 'mac_bundle': 1, 35 'mac_bundle': 1,
35 'variables': { 36 'variables': {
36 'bundle_id': '<!(python <(version_py_path) -f <(branding_path) -t "@ MAC_UNINSTALLER_BUNDLE_ID@")', 37 'bundle_id': '<!(python <(version_py_path) -f <(branding_path) -t "@ MAC_UNINSTALLER_BUNDLE_ID@")',
37 'host_bundle_name': '<!(python <(version_py_path) -f <(branding_path ) -t "@MAC_HOST_BUNDLE_NAME@")', 38 'host_bundle_name': '<!(python <(version_py_path) -f <(branding_path ) -t "@MAC_HOST_BUNDLE_NAME@")',
38 'prefpane_bundle_name': '<!(python <(version_py_path) -f <(branding_ path) -t "@MAC_PREFPANE_BUNDLE_NAME@")', 39 'prefpane_bundle_name': '<!(python <(version_py_path) -f <(branding_ path) -t "@MAC_PREFPANE_BUNDLE_NAME@")',
39 }, 40 },
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 'conditions': [ 249 'conditions': [
249 ['mac_breakpad==1', { 250 ['mac_breakpad==1', {
250 'variables': { 251 'variables': {
251 # A real .dSYM is needed for dump_syms to operate on. 252 # A real .dSYM is needed for dump_syms to operate on.
252 'mac_real_dsym': 1, 253 'mac_real_dsym': 1,
253 }, 254 },
254 }], # 'mac_breakpad==1' 255 }], # 'mac_breakpad==1'
255 ], # conditions 256 ], # conditions
256 }, # end of target 'remoting_host_prefpane' 257 }, # end of target 'remoting_host_prefpane'
257 ], # end of 'targets' 258 ], # end of 'targets'
259
258 }], # 'OS=="mac"' 260 }], # 'OS=="mac"'
259 261
260 ], # end of 'conditions' 262 ], # end of 'conditions'
261 } 263 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698