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

Side by Side Diff: chrome/installer/installer.gyp

Issue 2631007: Merge 48978 to 375 - Include plugin.vch files for Flash Player (on official b... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/375/src/
Patch Set: Created 10 years, 6 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_exe.gypi ('k') | chrome/tools/build/linux/FILES.cfg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'version_py': '../../chrome/tools/build/version.py', 3 'version_py': '../../chrome/tools/build/version.py',
4 'version_path': '../../chrome/VERSION', 4 'version_path': '../../chrome/VERSION',
5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', 5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE',
6 # 'branding_dir' is set in the 'conditions' section at the bottom. 6 # 'branding_dir' is set in the 'conditions' section at the bottom.
7 }, 7 },
8 'includes': [ 8 'includes': [
9 # Two versions of installer_util target are defined in installer_util.gypi. 9 # Two versions of installer_util target are defined in installer_util.gypi.
10 # This allows to keep all the settings relevant to these targets in one 10 # This allows to keep all the settings relevant to these targets in one
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 'rpm_build': '<(PRODUCT_DIR)/installer/rpm/build.sh', 361 'rpm_build': '<(PRODUCT_DIR)/installer/rpm/build.sh',
362 'deb_cmd': ['<@(flock_bash)', '<(deb_build)', '-o' '<(PRODUCT_DIR)', 362 'deb_cmd': ['<@(flock_bash)', '<(deb_build)', '-o' '<(PRODUCT_DIR)',
363 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], 363 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'],
364 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)', 364 'rpm_cmd': ['<@(flock_bash)', '<(rpm_build)', '-o' '<(PRODUCT_DIR)',
365 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], 365 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'],
366 'conditions': [ 366 'conditions': [
367 ['target_arch=="ia32"', { 367 ['target_arch=="ia32"', {
368 'deb_arch': 'i386', 368 'deb_arch': 'i386',
369 'rpm_arch': 'i386', 369 'rpm_arch': 'i386',
370 # Flash Player for Linux is currently only available for ia32. 370 # Flash Player for Linux is currently only available for ia32.
371 'packaging_files_binaries': ['<(PRODUCT_DIR)/libgcflashplayer.so'], 371 'packaging_files_binaries': [
372 '<(PRODUCT_DIR)/libgcflashplayer.so',
373 '<(PRODUCT_DIR)/plugin.vch',
374 ],
372 }], 375 }],
373 ['target_arch=="x64"', { 376 ['target_arch=="x64"', {
374 'deb_arch': 'amd64', 377 'deb_arch': 'amd64',
375 'rpm_arch': 'x86_64', 378 'rpm_arch': 'x86_64',
376 }], 379 }],
377 ], 380 ],
378 }, 381 },
379 'targets': [ 382 'targets': [
380 { 383 {
381 'target_name': 'linux_installer_configs', 384 'target_name': 'linux_installer_configs',
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 }, 769 },
767 }], 770 }],
768 ], 771 ],
769 } 772 }
770 773
771 # Local Variables: 774 # Local Variables:
772 # tab-width:2 775 # tab-width:2
773 # indent-tabs-mode:nil 776 # indent-tabs-mode:nil
774 # End: 777 # End:
775 # vim: set expandtab tabstop=2 shiftwidth=2: 778 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/chrome_exe.gypi ('k') | chrome/tools/build/linux/FILES.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698