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

Side by Side Diff: chrome/chrome_installer.gypi

Issue 136473016: Add eu-strips sha1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved eu-strip to packaging_files_common in gypi Created 6 years, 11 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 | « build/linux/bin/eu-strip.sha1 ('k') | chrome/installer/linux/common/installer.include » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'lastchange_path': '../build/util/LASTCHANGE', 7 'lastchange_path': '../build/util/LASTCHANGE',
8 'libpeer_target_type%': 'static_library', 8 'libpeer_target_type%': 'static_library',
9 # 'branding_dir' is set in the 'conditions' section at the bottom. 9 # 'branding_dir' is set in the 'conditions' section at the bottom.
10 }, 10 },
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'], 560 '-b', '<(PRODUCT_DIR)', '-a', '<(target_arch)'],
561 'conditions': [ 561 'conditions': [
562 ['target_arch=="ia32"', { 562 ['target_arch=="ia32"', {
563 'deb_arch': 'i386', 563 'deb_arch': 'i386',
564 'rpm_arch': 'i386', 564 'rpm_arch': 'i386',
565 'packaging_files_binaries': [ 565 'packaging_files_binaries': [
566 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', 566 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe',
567 '<(PRODUCT_DIR)/libwidevinecdmadapter.so', 567 '<(PRODUCT_DIR)/libwidevinecdmadapter.so',
568 '<(PRODUCT_DIR)/libwidevinecdm.so', 568 '<(PRODUCT_DIR)/libwidevinecdm.so',
569 ], 569 ],
570 'packaging_files_common': [
571 '<(DEPTH)/build/linux/bin/eu-strip',
572 ],
570 }], 573 }],
571 ['target_arch=="x64"', { 574 ['target_arch=="x64"', {
572 'deb_arch': 'amd64', 575 'deb_arch': 'amd64',
573 'rpm_arch': 'x86_64', 576 'rpm_arch': 'x86_64',
574 'packaging_files_binaries': [ 577 'packaging_files_binaries': [
575 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', 578 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
576 '<(PRODUCT_DIR)/libwidevinecdmadapter.so', 579 '<(PRODUCT_DIR)/libwidevinecdmadapter.so',
577 '<(PRODUCT_DIR)/libwidevinecdm.so', 580 '<(PRODUCT_DIR)/libwidevinecdm.so',
578 ], 581 ],
582 'packaging_files_common': [
583 '<!(which eu-strip)',
584 ],
579 }], 585 }],
580 ['target_arch=="arm"', { 586 ['target_arch=="arm"', {
581 'deb_arch': 'arm', 587 'deb_arch': 'arm',
582 'rpm_arch': 'arm', 588 'rpm_arch': 'arm',
583 }], 589 }],
584 ['internal_pdf', { 590 ['internal_pdf', {
585 'packaging_files_binaries': [ 591 'packaging_files_binaries': [
586 '<(PRODUCT_DIR)/libpdf.so', 592 '<(PRODUCT_DIR)/libpdf.so',
587 ], 593 ],
588 }], 594 }],
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
1206 'branding_dir_100': 'app/theme/default_100_percent/google_chrome', 1212 'branding_dir_100': 'app/theme/default_100_percent/google_chrome',
1207 }, 1213 },
1208 }, { # else branding!="Chrome" 1214 }, { # else branding!="Chrome"
1209 'variables': { 1215 'variables': {
1210 'branding_dir': 'app/theme/chromium', 1216 'branding_dir': 'app/theme/chromium',
1211 'branding_dir_100': 'app/theme/default_100_percent/chromium', 1217 'branding_dir_100': 'app/theme/default_100_percent/chromium',
1212 }, 1218 },
1213 }], 1219 }],
1214 ], 1220 ],
1215 } 1221 }
OLDNEW
« no previous file with comments | « build/linux/bin/eu-strip.sha1 ('k') | chrome/installer/linux/common/installer.include » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698