| 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 # GN version: //ui/resources | 8 # GN version: //ui/resources |
| 9 'target_name': 'ui_resources', | 9 'target_name': 'ui_resources', |
| 10 'type': 'none', | 10 'type': 'none', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 { | 51 { |
| 52 'action_name': 'repack_ui_test_pack', | 52 'action_name': 'repack_ui_test_pack', |
| 53 'variables': { | 53 'variables': { |
| 54 'pak_inputs': [ | 54 'pak_inputs': [ |
| 55 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percent.
pak', | 55 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percent.
pak', |
| 56 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/webui_resources.pak', | 56 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/webui_resources.pak', |
| 57 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/app_locale_settings_en-US.p
ak', | 57 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/app_locale_settings_en-US.p
ak', |
| 58 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak', | 58 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak', |
| 59 ], | 59 ], |
| 60 'pak_output': '<(PRODUCT_DIR)/ui_test.pak', | 60 'pak_output': '<(PRODUCT_DIR)/ui_test.pak', |
| 61 'conditions': [ | |
| 62 ['chromeos==1', { | |
| 63 'pak_inputs': [ | |
| 64 '<(SHARED_INTERMEDIATE_DIR)/ui/chromeos/resources/ui_chromeos_
resources_100_percent.pak', | |
| 65 '<(SHARED_INTERMEDIATE_DIR)/ui/chromeos/strings/ui_chromeos_st
rings_en-US.pak', | |
| 66 ], | |
| 67 }], | |
| 68 ], | |
| 69 }, | 61 }, |
| 70 'includes': [ '../../build/repack_action.gypi' ], | 62 'includes': [ '../../build/repack_action.gypi' ], |
| 71 }, | 63 }, |
| 72 ], | 64 ], |
| 73 'conditions': [ | 65 'conditions': [ |
| 74 ['chromeos==1', { | |
| 75 'dependencies': [ | |
| 76 '../chromeos/ui_chromeos.gyp:ui_chromeos_strings', | |
| 77 '../chromeos/ui_chromeos.gyp:ui_chromeos_resources', | |
| 78 ], | |
| 79 }], | |
| 80 ['OS != "mac"', { | 66 ['OS != "mac"', { |
| 81 'copies': [ | 67 'copies': [ |
| 82 { | 68 { |
| 83 # GN version //ui/resources:copy_ui_resources_100_percent | 69 # GN version //ui/resources:copy_ui_resources_100_percent |
| 84 'destination': '<(PRODUCT_DIR)/ui', | 70 'destination': '<(PRODUCT_DIR)/ui', |
| 85 'files': [ | 71 'files': [ |
| 86 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percen
t.pak', | 72 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percen
t.pak', |
| 87 ], | 73 ], |
| 88 }, | 74 }, |
| 89 ], | 75 ], |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 '<@(_inputs)', | 112 '<@(_inputs)', |
| 127 '<@(_outputs)' | 113 '<@(_outputs)' |
| 128 ], | 114 ], |
| 129 }, | 115 }, |
| 130 ], | 116 ], |
| 131 }], | 117 }], |
| 132 ], | 118 ], |
| 133 }, | 119 }, |
| 134 ], | 120 ], |
| 135 } | 121 } |
| OLD | NEW |