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

Side by Side Diff: remoting/remoting.gyp

Issue 8824003: Breakpad: Compile Breakpad into Chromium by default on Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Split out mac_breakpad_symbols too Created 9 years 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 consistent strings across all platforms. Note that the plugin name 10 # Use consistent strings across all platforms. Note that the plugin name
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 'host/disconnect_window.xib', 287 'host/disconnect_window.xib',
288 'host/plugin/host_plugin-Info.plist', 288 'host/plugin/host_plugin-Info.plist',
289 'resources/chromoting16.png', 289 'resources/chromoting16.png',
290 'resources/chromoting48.png', 290 'resources/chromoting48.png',
291 'resources/chromoting128.png', 291 'resources/chromoting128.png',
292 ], 292 ],
293 'mac_bundle_resources!': [ 293 'mac_bundle_resources!': [
294 'host/plugin/host_plugin-Info.plist', 294 'host/plugin/host_plugin-Info.plist',
295 ], 295 ],
296 'conditions': [ 296 'conditions': [
297 ['mac_breakpad==1', { 297 ['mac_breakpad_symbols==1', {
298 'variables': { 298 'variables': {
299 # A real .dSYM is needed for dump_syms to operate on. 299 # A real .dSYM is needed for dump_syms to operate on.
300 'mac_real_dsym': 1, 300 'mac_real_dsym': 1,
301 }, 301 },
302 }], 302 }],
303 ], # conditions 303 ], # conditions
304 }], # OS=="mac" 304 }], # OS=="mac"
305 ['OS!="win"', { 305 ['OS!="win"', {
306 'sources!': [ 306 'sources!': [
307 'host/plugin/host_plugin.def', 307 'host/plugin/host_plugin.def',
(...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after
926 '../base/allocator/allocator.gyp:allocator', 926 '../base/allocator/allocator.gyp:allocator',
927 ], 927 ],
928 }, 928 },
929 ], 929 ],
930 ], 930 ],
931 }], 931 }],
932 ], # end of 'conditions' 932 ], # end of 'conditions'
933 }, # end of target 'remoting_unittests' 933 }, # end of target 'remoting_unittests'
934 ], # end of targets 934 ], # end of targets
935 } 935 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698