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

Side by Side Diff: chrome/chrome.gyp

Issue 155100: Add default browser checking and setting on Linux. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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
« no previous file with comments | « chrome/browser/shell_integration_linux.cc ('k') | chrome/common/temp_scaffolding_stubs.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 1414 matching lines...) Expand 10 before | Expand all | Expand 10 after
1425 'browser/sessions/session_service.cc', 1425 'browser/sessions/session_service.cc',
1426 'browser/sessions/session_service.h', 1426 'browser/sessions/session_service.h',
1427 'browser/sessions/session_types.cc', 1427 'browser/sessions/session_types.cc',
1428 'browser/sessions/session_types.h', 1428 'browser/sessions/session_types.h',
1429 'browser/sessions/tab_restore_service.cc', 1429 'browser/sessions/tab_restore_service.cc',
1430 'browser/sessions/tab_restore_service.h', 1430 'browser/sessions/tab_restore_service.h',
1431 'browser/shell_dialogs.h', 1431 'browser/shell_dialogs.h',
1432 'browser/shell_integration.cc', 1432 'browser/shell_integration.cc',
1433 'browser/shell_integration.h', 1433 'browser/shell_integration.h',
1434 'browser/shell_integration_mac.mm', 1434 'browser/shell_integration_mac.mm',
1435 'browser/shell_integration_linux.cc',
1435 'browser/spellcheck_worditerator.cc', 1436 'browser/spellcheck_worditerator.cc',
1436 'browser/spellcheck_worditerator.h', 1437 'browser/spellcheck_worditerator.h',
1437 'browser/spellchecker.cc', 1438 'browser/spellchecker.cc',
1438 'browser/spellchecker.h', 1439 'browser/spellchecker.h',
1439 'browser/spellchecker_common.h', 1440 'browser/spellchecker_common.h',
1440 'browser/spellchecker_linux.cc', 1441 'browser/spellchecker_linux.cc',
1441 'browser/spellchecker_mac.mm', 1442 'browser/spellchecker_mac.mm',
1442 'browser/spellchecker_platform_engine.h', 1443 'browser/spellchecker_platform_engine.h',
1443 'browser/spellchecker_win.cc', 1444 'browser/spellchecker_win.cc',
1444 'browser/ssl/ssl_blocking_page.cc', 1445 'browser/ssl/ssl_blocking_page.cc',
(...skipping 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after
2542 ], 2543 ],
2543 'dependencies': [ 2544 'dependencies': [
2544 # Needed for chrome_dll_main.cc #include of gtk/gtk.h 2545 # Needed for chrome_dll_main.cc #include of gtk/gtk.h
2545 '../build/linux/system.gyp:gtk', 2546 '../build/linux/system.gyp:gtk',
2546 # Needed for chrome_dll_main.cc use of g_thread_init 2547 # Needed for chrome_dll_main.cc use of g_thread_init
2547 '../build/linux/system.gyp:gthread', 2548 '../build/linux/system.gyp:gthread',
2548 ], 2549 ],
2549 'copies': [ 2550 'copies': [
2550 { 2551 {
2551 'destination': '<(PRODUCT_DIR)', 2552 'destination': '<(PRODUCT_DIR)',
2552 'files': ['<(INTERMEDIATE_DIR)/repack/chrome.pak'], 2553 'files': ['<(INTERMEDIATE_DIR)/repack/chrome.pak',
2554 'tools/build/linux/chrome-wrapper',
2555 '../third_party/xdg-utils/scripts/xdg-settings',
2556 ],
2557 'conditions': [
2558 ['branding=="Chrome"', {
2559 'files': ['app/theme/google_chrome/product_logo_48.png']
2560 }, { # else: 'branding!="Chrome"
2561 'files': ['app/theme/chromium/product_logo_48.png']
2562 }],
2563 ],
2553 }, 2564 },
2554 { 2565 {
2555 'destination': '<(PRODUCT_DIR)/locales', 2566 'destination': '<(PRODUCT_DIR)/locales',
2556 'files': ['<(INTERMEDIATE_DIR)/repack/da.pak', 2567 'files': ['<(INTERMEDIATE_DIR)/repack/da.pak',
2557 '<(INTERMEDIATE_DIR)/repack/en-US.pak', 2568 '<(INTERMEDIATE_DIR)/repack/en-US.pak',
2558 '<(INTERMEDIATE_DIR)/repack/he.pak', 2569 '<(INTERMEDIATE_DIR)/repack/he.pak',
2559 '<(INTERMEDIATE_DIR)/repack/zh-TW.pak', 2570 '<(INTERMEDIATE_DIR)/repack/zh-TW.pak',
2560 ], 2571 ],
2561 }, 2572 },
2562 { 2573 {
(...skipping 2354 matching lines...) Expand 10 before | Expand all | Expand 10 after
4917 # Use outputs of this action as inputs for the main target build. 4928 # Use outputs of this action as inputs for the main target build.
4918 # Seems as a misnomer but makes this happy on Linux (scons). 4929 # Seems as a misnomer but makes this happy on Linux (scons).
4919 'process_outputs_as_sources': 1, 4930 'process_outputs_as_sources': 1,
4920 }, 4931 },
4921 ], # 'actions' 4932 ], # 'actions'
4922 }, 4933 },
4923 ] 4934 ]
4924 }], 4935 }],
4925 ], # 'conditions' 4936 ], # 'conditions'
4926 } 4937 }
OLDNEW
« no previous file with comments | « chrome/browser/shell_integration_linux.cc ('k') | chrome/common/temp_scaffolding_stubs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698