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

Side by Side Diff: remoting/remoting.gyp

Issue 7562002: Generate Breakpad symbols for Remoting Host plugin on Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix dSYM location, set mac_real_dsym=1 and add chrome dependency. Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': { 6 'variables': {
7 # TODO(dmaclach): can we pick this up some other way? Right now it's 7 # TODO(dmaclach): can we pick this up some other way? Right now it's
8 # duplicated from chrome.gyp 8 # duplicated from chrome.gyp
9 'chromium_code': 1, 9 'chromium_code': 1,
10 # Use a consistent MIME-type independent of branding. 10 # Use a consistent MIME-type independent of branding.
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 # only be necessary to list framework-Info.plist once, not the 195 # only be necessary to list framework-Info.plist once, not the
196 # three times it is listed here. 196 # three times it is listed here.
197 'mac_bundle_resources': [ 197 'mac_bundle_resources': [
198 'host/disconnect_window.xib', 198 'host/disconnect_window.xib',
199 'host/plugin/host_plugin-Info.plist', 199 'host/plugin/host_plugin-Info.plist',
200 'resources/chromoting128.png', 200 'resources/chromoting128.png',
201 ], 201 ],
202 'mac_bundle_resources!': [ 202 'mac_bundle_resources!': [
203 'host/plugin/host_plugin-Info.plist', 203 'host/plugin/host_plugin-Info.plist',
204 ], 204 ],
205 }], 205 'conditions': [
206 ['mac_breakpad==1', {
207 'variables': {
208 # A real .dSYM is needed for dump_syms to operate on.
209 'mac_real_dsym': 1,
210 },
211 }],
212 ], # conditions
213 }], # OS=="mac"
206 ['OS!="win"', { 214 ['OS!="win"', {
207 'sources!': [ 215 'sources!': [
208 'host/plugin/host_plugin.def', 216 'host/plugin/host_plugin.def',
209 'host/plugin/host_plugin.rc', 217 'host/plugin/host_plugin.rc',
210 ], 218 ],
211 }], 219 }],
212 ['target_arch=="arm"', { 220 ['target_arch=="arm"', {
213 'dependencies': [ 221 'dependencies': [
214 '../third_party/libvpx/libvpx.gyp:libvpx_lib', 222 '../third_party/libvpx/libvpx.gyp:libvpx_lib',
215 ], 223 ],
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 ['target_arch=="arm"', { 827 ['target_arch=="arm"', {
820 'sources!': [ 828 'sources!': [
821 'base/decoder_vp8_unittest.cc', 829 'base/decoder_vp8_unittest.cc',
822 'base/encoder_vp8_unittest.cc', 830 'base/encoder_vp8_unittest.cc',
823 ], 831 ],
824 }], 832 }],
825 ], # end of 'conditions' 833 ], # end of 'conditions'
826 }, # end of target 'remoting_unittests' 834 }, # end of target 'remoting_unittests'
827 ], # end of targets 835 ], # end of targets
828 } 836 }
OLDNEW
« chrome/tools/build/mac/dump_product_syms ('K') | « chrome/tools/build/mac/dump_product_syms ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698