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

Side by Side Diff: tools/gritsettings/resource_ids

Issue 10444060: Use chrome_html structure for shared_resources and options2 page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with master. Created 8 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/shared_resources.grd ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # This file is used to assign starting resource ids for resources and strings 5 # This file is used to assign starting resource ids for resources and strings
6 # used by Chromium. This is done to ensure that resource ids are unique 6 # used by Chromium. This is done to ensure that resource ids are unique
7 # across all the grd files. If you are adding a new grd file, please add 7 # across all the grd files. If you are adding a new grd file, please add
8 # a new entry to this file. 8 # a new entry to this file.
9 # 9 #
10 # The first entry in the file, SRCDIR, is special: It is a relative path from 10 # The first entry in the file, SRCDIR, is special: It is a relative path from
11 # this file to the base of your checkout. 11 # this file to the base of your checkout.
12 # 12 #
13 # http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx says that the 13 # http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx says that the
14 # range for IDR_ is 1 to 28,671 and the range for IDS_ is 1 to 32,767 and 14 # range for IDR_ is 1 to 28,671 and the range for IDS_ is 1 to 32,767 and
15 # common convention starts practical use of IDs at 100 or 101. 15 # common convention starts practical use of IDs at 100 or 101.
16 { 16 {
17 "SRCDIR": "../..", 17 "SRCDIR": "../..",
18 18
19 "chrome/browser/browser_resources.grd": { 19 "chrome/browser/browser_resources.grd": {
20 "includes": [500], 20 "includes": [500],
21 }, 21 },
22 "chrome/browser/resources/component_extension_resources.grd": { 22 "chrome/browser/resources/component_extension_resources.grd": {
23 "includes": [1000], 23 "includes": [1000],
24 }, 24 },
25 "chrome/browser/resources/net_internals_resources.grd": { 25 "chrome/browser/resources/net_internals_resources.grd": {
26 "includes": [1500], 26 "includes": [1500],
27 }, 27 },
28 "chrome/browser/resources/shared_resources.grd": { 28 "chrome/browser/resources/shared_resources.grd": {
29 "includes": [2000], 29 "includes": [2000],
30 "structures": [2200],
30 }, 31 },
31 "chrome/common/common_resources.grd": { 32 "chrome/common/common_resources.grd": {
32 "includes": [2500], 33 "includes": [2500],
33 }, 34 },
34 "chrome/renderer/renderer_resources.grd": { 35 "chrome/renderer/renderer_resources.grd": {
35 "includes": [3500], 36 "includes": [3500],
36 }, 37 },
37 "net/base/net_resources.grd": { 38 "net/base/net_resources.grd": {
38 "includes": [4000], 39 "includes": [4000],
39 }, 40 },
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 "includes": [21000], 159 "includes": [21000],
159 }, 160 },
160 # This file is generated during the build. 161 # This file is generated during the build.
161 "chrome/browser/debugger/frontend/devtools_discovery_page_resources.grd": { 162 "chrome/browser/debugger/frontend/devtools_discovery_page_resources.grd": {
162 "includes": [21500], 163 "includes": [21500],
163 }, 164 },
164 "chrome/browser/resources/options_resources.grd": { 165 "chrome/browser/resources/options_resources.grd": {
165 "includes": [22000], 166 "includes": [22000],
166 }, 167 },
167 "chrome/browser/resources/options2_resources.grd": { 168 "chrome/browser/resources/options2_resources.grd": {
168 "includes": [22200], 169 "structures": [22200],
169 }, 170 },
170 "cloud_print/virtual_driver/win/install/virtual_driver_setup_resources.grd": { 171 "cloud_print/virtual_driver/win/install/virtual_driver_setup_resources.grd": {
171 "messages": [22500], 172 "messages": [22500],
172 }, 173 },
173 "chrome/browser/resources/quota_internals_resources.grd": { 174 "chrome/browser/resources/quota_internals_resources.grd": {
174 "includes": [23000], 175 "includes": [23000],
175 }, 176 },
176 # All standard and large theme resources should have the same IDs. 177 # All standard and large theme resources should have the same IDs.
177 "ui/resources/ui_resources_standard.grd": { 178 "ui/resources/ui_resources_standard.grd": {
178 "includes": [24000], 179 "includes": [24000],
(...skipping 13 matching lines...) Expand all
192 "content/shell/shell_resources.grd": { 193 "content/shell/shell_resources.grd": {
193 "includes": [25000], 194 "includes": [25000],
194 }, 195 },
195 "ash/ash_strings.grd": { 196 "ash/ash_strings.grd": {
196 "messages": [25500], 197 "messages": [25500],
197 }, 198 },
198 "chrome/common/extensions_api_resources.grd": { 199 "chrome/common/extensions_api_resources.grd": {
199 "includes": [26000], 200 "includes": [26000],
200 }, 201 },
201 } 202 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/shared_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698