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

Side by Side Diff: chrome/chrome.gyp

Issue 209042: Make Linux Breakpad initialization call to lsb_release asynchronous. Also wrap more... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 3 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 # Define the common dependencies that contain all the actual 9 # Define the common dependencies that contain all the actual
10 # Chromium functionality. This list gets pulled in below by 10 # Chromium functionality. This list gets pulled in below by
(...skipping 2229 matching lines...) Expand 10 before | Expand all | Expand 10 after
2240 'app/breakpad_linux.cc', 2240 'app/breakpad_linux.cc',
2241 'app/breakpad_linux.h', 2241 'app/breakpad_linux.h',
2242 ], 2242 ],
2243 'dependencies': [ 2243 'dependencies': [
2244 '../breakpad/breakpad.gyp:breakpad_client', 2244 '../breakpad/breakpad.gyp:breakpad_client',
2245 ], 2245 ],
2246 'include_dirs': [ 2246 'include_dirs': [
2247 # breakpad_linux.cc wants file_version_info_linux.h 2247 # breakpad_linux.cc wants file_version_info_linux.h
2248 '<(SHARED_INTERMEDIATE_DIR)', 2248 '<(SHARED_INTERMEDIATE_DIR)',
2249 ], 2249 ],
2250 }, { 2250 }, { # linux_breakpad==0
2251 'sources': [ 2251 'sources': [
2252 'browser/renderer_host/render_crash_handler_host_linux_stub.cc', 2252 'browser/renderer_host/render_crash_handler_host_linux_stub.cc',
2253 'app/breakpad_linux_stub.cc',
2254 'app/breakpad_linux.h',
2255 ], 2253 ],
2256 }], 2254 }],
2257 ['linux_sandbox_path != ""', { 2255 ['linux_sandbox_path != ""', {
2258 'defines': [ 2256 'defines': [
2259 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', 2257 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"',
2260 ], 2258 ],
2261 }], 2259 }],
2262 ], 2260 ],
2263 }], 2261 }],
2264 ['OS=="linux" and toolkit_views==0', { 2262 ['OS=="linux" and toolkit_views==0', {
(...skipping 4324 matching lines...) Expand 10 before | Expand all | Expand 10 after
6589 'dependencies': [ 6587 'dependencies': [
6590 '../third_party/pthreads-win32/pthreads.gyp:pthreads', 6588 '../third_party/pthreads-win32/pthreads.gyp:pthreads',
6591 ], 6589 ],
6592 }], 6590 }],
6593 ], 6591 ],
6594 }, 6592 },
6595 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 6593 ], # targets when chrome_personalization==1 and use_syncapi_stub==0
6596 }], 6594 }],
6597 ], # 'conditions' 6595 ], # 'conditions'
6598 } 6596 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698