Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(137)

Side by Side Diff: ui/resources/ui_resources.gyp

Issue 588963002: Start the process of renaming ui_unittests to ui_base_unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix clobber build of ui_unittests on Android - crbug.com/374490 Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/base/ui_base_tests.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « ui/base/ui_base_tests.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698