Chromium Code Reviews| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 108 ], | 108 ], |
| 109 'action': [ | 109 'action': [ |
| 110 'python', | 110 'python', |
| 111 '../../build/cp.py', | 111 '../../build/cp.py', |
| 112 '<@(_inputs)', | 112 '<@(_inputs)', |
| 113 '<@(_outputs)' | 113 '<@(_outputs)' |
| 114 ], | 114 ], |
| 115 }, | 115 }, |
| 116 ], | 116 ], |
| 117 }], | 117 }], |
| 118 ['OS == "android"', { | |
| 119 'actions': [ | |
| 120 { | |
| 121 'action_name': 'copy_en_US_pak', | |
| 122 'message': 'Copying en-US.pak into locales/', | |
| 123 'inputs': [ | |
| 124 '<(PRODUCT_DIR)/ui/en-US.pak', | |
| 125 ], | |
| 126 'outputs': [ | |
| 127 '<(PRODUCT_DIR)/locales/en-US.pak', | |
|
tfarina
2014/09/22 02:34:55
I'm hoping this will address -> crbug.com/374490.
tony
2014/09/22 16:20:50
Won't this get clobbered by the en-US.pak that is
tfarina
2014/09/22 17:17:15
Tony, Chris, could this being caused by https://co
| |
| 128 ], | |
|
tfarina
2014/09/22 03:20:07
It seems to have fixed it:
http://build.chromium.
| |
| 129 'action': [ | |
| 130 'python', | |
| 131 '../../build/cp.py', | |
| 132 '<@(_inputs)', | |
| 133 '<@(_outputs)' | |
| 134 ], | |
| 135 }, | |
| 136 ], | |
| 137 }], | |
| 118 ], | 138 ], |
| 119 }, | 139 }, |
| 120 ], | 140 ], |
| 121 } | 141 } |
| OLD | NEW |