Chromium Code Reviews| Index: ui/ui.gyp |
| diff --git a/ui/ui.gyp b/ui/ui.gyp |
| index a38f8590bc6bdbccee0df6a7191094d1967046a6..2256bf0130a66a9b00d7253e8069189a38f39c1f 100644 |
| --- a/ui/ui.gyp |
| +++ b/ui/ui.gyp |
| @@ -581,6 +581,38 @@ |
| ], |
| }, |
| { |
| + 'target_name': 'ui_pak', |
| + 'type': 'none', |
| + 'dependencies': [ |
| + '<(DEPTH)/ui/base/strings/ui_strings.gyp:ui_strings', |
| + '<(DEPTH)/ui/ui.gyp:ui_resources', |
| + ], |
| + 'variables': { |
| + 'repack_path': '<(DEPTH)/tools/grit/grit/format/repack.py', |
| + }, |
| + 'actions': [ |
| + { |
| + 'action_name': 'ui_pack', |
| + 'variables': { |
| + 'pak_inputs': [ |
| + '<(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_settings_en-US.pak', |
| + '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources_100_percent.pak', |
| + '<(SHARED_INTERMEDIATE_DIR)/ui/ui_strings/ui_strings_en-US.pak', |
| + ], |
| + }, |
| + 'inputs': [ |
| + '<(repack_path)', |
| + '<@(pak_inputs)', |
| + ], |
| + 'outputs': [ |
| + '<(PRODUCT_DIR)/ui.pak', |
|
tony
2013/10/31 19:48:34
I would put 'test' in the filename to make it clea
|
| + ], |
| + 'action': ['python', '<(repack_path)', '<@(_outputs)', |
| + '<@(pak_inputs)'], |
| + }, |
| + ], |
| + }, |
| + { |
| 'target_name': 'webui_test_support', |
| 'type': 'none', |
| 'direct_dependent_settings': { |