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

Side by Side Diff: content/content_shell.gypi

Issue 109013004: Use icudat*.dat file on Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use PRODUCT_DIR instead of DEPTH 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 | « chrome/chrome_dll_bundle.gypi ('k') | no next file » | 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 'content_shell_product_name': 'Content Shell', 7 'content_shell_product_name': 'Content Shell',
8 # The "19" is so that sites that sniff for version think that this is 8 # The "19" is so that sites that sniff for version think that this is
9 # something reasonably current; the "77.34.5" is a hint that this isn't a 9 # something reasonably current; the "77.34.5" is a hint that this isn't a
10 # standard Chrome. 10 # standard Chrome.
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 'content_shell_helper_app', 466 'content_shell_helper_app',
467 ], 467 ],
468 'copies': [ 468 'copies': [
469 { 469 {
470 'destination': '<(PRODUCT_DIR)/<(content_shell_product_name).app/C ontents/Frameworks', 470 'destination': '<(PRODUCT_DIR)/<(content_shell_product_name).app/C ontents/Frameworks',
471 'files': [ 471 'files': [
472 '<(PRODUCT_DIR)/<(content_shell_product_name) Helper.app', 472 '<(PRODUCT_DIR)/<(content_shell_product_name) Helper.app',
473 ], 473 ],
474 }, 474 },
475 ], 475 ],
476 'conditions': [
477 ['icu_use_data_file_flag==1', {
478 'mac_bundle_resources': [
479 '<(PRODUCT_DIR)/icudtl.dat',
480 ],
481 }],
jungshik at Google 2014/01/22 19:38:42 I'll move this under content_shell_framework targe
482 ],
476 'postbuilds': [ 483 'postbuilds': [
477 { 484 {
478 'postbuild_name': 'Copy <(content_shell_product_name) Framework.fr amework', 485 'postbuild_name': 'Copy <(content_shell_product_name) Framework.fr amework',
479 'action': [ 486 'action': [
480 '../build/mac/copy_framework_unversioned.sh', 487 '../build/mac/copy_framework_unversioned.sh',
481 '${BUILT_PRODUCTS_DIR}/<(content_shell_product_name) Framework.f ramework', 488 '${BUILT_PRODUCTS_DIR}/<(content_shell_product_name) Framework.f ramework',
482 '${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}/Frameworks', 489 '${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}/Frameworks',
483 ], 490 ],
484 }, 491 },
485 { 492 {
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 868 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
862 '--destination_dir', '<(dest_dir)', 869 '--destination_dir', '<(dest_dir)',
863 ], 870 ],
864 }, 871 },
865 ], 872 ],
866 }, 873 },
867 ], 874 ],
868 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 875 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
869 ] 876 ]
870 } 877 }
OLDNEW
« no previous file with comments | « chrome/chrome_dll_bundle.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698