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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 7827021: Changed mac and win Official Chrome build to drop default app CRXs in the build/installer output. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_installer.gypi » ('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) 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 'target_defaults': { 5 'target_defaults': {
6 'variables': { 6 'variables': {
7 'chrome_dll_target': 0, 7 'chrome_dll_target': 0,
8 }, 8 },
9 'target_conditions': [ 9 'target_conditions': [
10 ['chrome_dll_target==1', { 10 ['chrome_dll_target==1', {
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 'conditions': [ 583 'conditions': [
584 ['debug_devtools!=0', { 584 ['debug_devtools!=0', {
585 'files': [ 585 'files': [
586 '<(PRODUCT_DIR)/resources/inspector', 586 '<(PRODUCT_DIR)/resources/inspector',
587 ], 587 ],
588 }], 588 }],
589 ], 589 ],
590 }, 590 },
591 ], 591 ],
592 'conditions': [ 592 'conditions': [
593 ['branding=="Chrome"', {
594 'copies': [
595 {
596 # This location is for the Mac build. Note that the
597 # copying of these files for Windows and Linux is handled
598 # in chrome.gyp, as Mac needs to be dropped inside the
599 # framework.
600 'destination':
601 '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Default Apps',
602 'files': [
603 'browser/resources/default_apps/gmail.crx',
604 'browser/resources/default_apps/youtube.crx',
605 ],
606 },
607 ],
608 }],
593 ['mac_breakpad==1', { 609 ['mac_breakpad==1', {
594 'variables': { 610 'variables': {
595 # A real .dSYM is needed for dump_syms to operate on. 611 # A real .dSYM is needed for dump_syms to operate on.
596 'mac_real_dsym': 1, 612 'mac_real_dsym': 1,
597 }, 613 },
598 'sources': [ 614 'sources': [
599 'app/breakpad_mac.mm', 615 'app/breakpad_mac.mm',
600 'app/breakpad_mac.h', 616 'app/breakpad_mac.h',
601 ], 617 ],
602 'dependencies': [ 618 'dependencies': [
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 'LinkIncremental': '<(msvs_debug_link_nonincremental)', 766 'LinkIncremental': '<(msvs_debug_link_nonincremental)',
751 }, 767 },
752 }, 768 },
753 }, 769 },
754 }, 770 },
755 }, # target chrome_dll 771 }, # target chrome_dll
756 ], 772 ],
757 }], 773 }],
758 ], 774 ],
759 } 775 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_installer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698