Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 '<(DEPTH)/third_party/icu/source/data/in/icudtl.dat', | |
|
Mark Mentovai
2013/12/20 14:27:35
Same.
| |
| 480 ], | |
| 481 }], | |
| 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 Loading... | |
| 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 } |
| OLD | NEW |