| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'ui_resources', | 8 'target_name': 'ui_resources', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'variables': { | 10 'variables': { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 }, | 34 }, |
| 35 ], | 35 ], |
| 36 'includes': [ '../../build/grit_target.gypi' ], | 36 'includes': [ '../../build/grit_target.gypi' ], |
| 37 }, | 37 }, |
| 38 { | 38 { |
| 39 # This creates a pak file that contains the resources in src/ui. | 39 # This creates a pak file that contains the resources in src/ui. |
| 40 # This pak file can be used by tests. | 40 # This pak file can be used by tests. |
| 41 'target_name': 'ui_test_pak', | 41 'target_name': 'ui_test_pak', |
| 42 'type': 'none', | 42 'type': 'none', |
| 43 'dependencies': [ | 43 'dependencies': [ |
| 44 '../base/strings/ui_strings.gyp:ui_strings', | 44 '../strings/ui_strings.gyp:ui_strings', |
| 45 'ui_resources', | 45 'ui_resources', |
| 46 ], | 46 ], |
| 47 'actions': [ | 47 'actions': [ |
| 48 { | 48 { |
| 49 'action_name': 'repack_ui_test_pack', | 49 'action_name': 'repack_ui_test_pack', |
| 50 'variables': { | 50 'variables': { |
| 51 'pak_inputs': [ | 51 'pak_inputs': [ |
| 52 '<(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_sett
ings_en-US.pak', | 52 '<(SHARED_INTERMEDIATE_DIR)/ui/app_locale_settings/app_locale_sett
ings_en-US.pak', |
| 53 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources_100_perce
nt.pak', | 53 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources_100_perce
nt.pak', |
| 54 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/webui_resources.pak', | 54 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/webui_resources.pak', |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 '<@(_inputs)', | 107 '<@(_inputs)', |
| 108 '<@(_outputs)' | 108 '<@(_outputs)' |
| 109 ], | 109 ], |
| 110 }, | 110 }, |
| 111 ], | 111 ], |
| 112 }], | 112 }], |
| 113 ], | 113 ], |
| 114 }, | 114 }, |
| 115 ], | 115 ], |
| 116 } | 116 } |
| OLD | NEW |