summaryrefslogtreecommitdiffstats
path: root/tools/gritsettings/resource_ids
blob: fe03946889dc2aa6092ac46e3740fe455ac27d88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
# This file is used to assign starting resource ids for resources and strings
# used by Chromium.  This is done to ensure that resource ids are unique
# across all the grd files.  If you are adding a new grd file, please add
# a new entry to this file.
#
# The first entry in the file, SRCDIR, is special: It is a relative path from
# this file to the base of your checkout.
#
# The range of ID values, which is used by pak files, is from 0 to 2^16 - 1.
{
  "SRCDIR": "../..",

  "chrome/browser/browser_resources.grd": {
    "includes": [400],
    "structures": [750],
  },
  "chrome/browser/resources/component_extension_resources.grd": {
    "includes": [1000],
    "structures": [1450],
  },
  "chrome/browser/resources/net_internals_resources.grd": {
    "includes": [1500],
  },
  "ui/webui/resources/webui_resources.grd": {
    "includes": [2000],
    "structures": [2200],
  },
  "chrome/common/common_resources.grd": {
    "includes": [3000],
  },
  "chrome/renderer/resources/renderer_resources.grd": {
    "includes": [3500],
    "structures": [3700],
  },
  "net/base/net_resources.grd": {
    "includes": [4000],
  },
  "mash/wm/resources/mash_wm_resources.grd": {
    "structures": [4400],
  },
  "ui/resources/ui_unscaled_resources.grd": {
    "includes": [4500],
  },
  "content/app/resources/content_resources.grd": {
    "structures": [4700],
  },
  "third_party/WebKit/public/blink_image_resources.grd": {
    "structures": [4750],
  },
  "ui/resources/ui_resources.grd": {
    "structures": [5500],
  },
  "ui/app_list/resources/app_list_resources.grd": {
    "structures": [5760],
  },
  "ui/views/resources/views_resources.grd": {
    "structures": [5800],
  },
  "ash/resources/ash_resources.grd": {
    "includes": [6100],
    "structures": [6150],
  },
  "ui/keyboard/keyboard_resources.grd": {
    "includes": [6850],
  },
  "chrome/app/theme/theme_resources.grd": {
    "structures": [7000],
  },
  "chrome/app/theme/chrome_unscaled_resources.grd": {
    "includes": [8000],
  },
  "ui/strings/app_locale_settings.grd": {
    "messages": [9000],
  },
  "chrome/app/resources/locale_settings.grd": {
    "includes": [9500],
    "messages": [10000],
  },
  # These each start with the same resource id because we only use one
  # file for each build (chromiumos, google_chromeos, linux, mac, or win).
  "chrome/app/resources/locale_settings_chromiumos.grd": {
    "messages": [10500],
  },
  "chrome/app/resources/locale_settings_google_chromeos.grd": {
    "messages": [10500],
  },
  "chrome/app/resources/locale_settings_linux.grd": {
    "messages": [10500],
  },
  "chrome/app/resources/locale_settings_mac.grd": {
    "messages": [10500],
  },
  "chrome/app/resources/locale_settings_win.grd": {
    "messages": [10500],
  },
  "ui/strings/ui_strings.grd": {
    "messages": [11000],
  },
  # Chromium strings and Google Chrome strings must start at the same id.
  # We only use one file depending on whether we're building Chromium or
  # Google Chrome.
  "chrome/app/chromium_strings.grd": {
    "messages": [11500],
  },
  "chrome/app/google_chrome_strings.grd": {
    "messages": [11500],
  },
  # Leave lots of space for generated_resources since it has most of our
  # strings.
  "chrome/app/generated_resources.grd": {
    "structures": [12000],
    "messages": [12500],
  },
  "content/app/strings/content_strings.grd": {
    "messages": [18900],
  },
  # Settings Chromium strings and Settings Google Chrome strings must start
  # at the same id.  We only use one file depending on whether we're building
  # Chromium or Google Chrome.
  "chrome/app/settings_chromium_strings.grd": {
    "messages": [19700],
  },
  "chrome/app/settings_google_chrome_strings.grd": {
    "messages": [19700],
  },
  "chrome/app/settings_strings.grd": {
    "messages": [20000],
  },
  "components/policy/resources/policy_templates.grd": {
    "structures": [20400],
    "messages": [20410],
  },
  "chrome/browser/resources/invalidations_resources.grd": {
    "includes": [21400],
  },
  # This file is generated during the build.
  "<(SHARED_INTERMEDIATE_DIR)/devtools/devtools_resources.grd": {
    "includes": [21450],
  },
  "devtools_resources.grd": {
    "includes": [21450],
  },
  "chrome/browser/resources/options_resources.grd": {
    "includes": [22450],
    "structures": [22650],
  },
  "chrome/browser/resources/options_test_resources.grd": {
    "includes": [22850],
    "structures": [22890],
  },
  "chrome/test/data/webui_test_resources.grd": {
    "includes": [22930],
    "structures": [22940],
  },
  "cloud_print/virtual_driver/win/install/virtual_driver_setup_resources.grd": {
    "messages": [22950],
    "includes": [23000],
  },
  "cloud_print/service/win/service_resources.grd": {
    "messages": [23050],
    "includes": [23150],
    "structures": [23200],
  },
  "cloud_print/gcp20/prototype/gcp20_device.grd": {
    "messages": [23250],
    "includes": [23280],
    "structures": [23290],
  },
  "chrome/browser/resources/quota_internals_resources.grd": {
    "includes": [23250],
  },
  "content/content_resources.grd": {
    "includes": [23950],
  },
  "content/shell/shell_resources.grd": {
    "includes": [24450],
  },
  # This file is generated during the build.
  "<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing/tracing_resources.grd": {
    "includes": [24700],
  },
  # iOS resources overlap with android_webview, ash, chromeos and extensions_api,
  # as these are not used on iOS.
  "ios/chrome/app/strings/ios_locale_settings.grd": {
    "messages": [24950],
  },
  "ios/chrome/app/strings/ios_strings.grd": {
    "messages": [24955],
  },
  # Chromium strings and Google Chrome strings must start at the same id.
  # We only use one file depending on whether we're building Chromium or
  # Google Chrome.
  "ios/chrome/app/strings/ios_chromium_strings.grd": {
    "messages": [25855],
  },
  "ios/chrome/app/strings/ios_google_chrome_strings.grd": {
    "messages": [25855],
  },
  "ios/chrome/app/resources/ios_resources.grd": {
    "structures": [25950],
    "includes": [26160],
  },
  "ios/chrome/app/theme/ios_theme_resources.grd": {
    "structures": [25970],
  },
  "ios/chrome/today_extension/strings/ios_today_extension_strings.grd": {
    "messages": [26435],
  },
  "ash/ash_strings.grd": {
    "messages": [24950],
  },
  "android_webview/ui/aw_resources.grd": {
    "includes": [24950],
  },
  "android_webview/ui/aw_strings.grd": {
    "messages": [25050],
  },
  "ui/chromeos/resources/ui_chromeos_resources.grd": {
    "structures": [25150],
  },
  "ui/chromeos/ui_chromeos_strings.grd": {
    "messages": [25250],
  },
  "chrome/common/extensions_api_resources.grd": {
    "includes": [25350],
  },
  "extensions/extensions_resources.grd": {
    "includes": [25550],
  },
  "extensions/browser/resources/extensions_browser_resources.grd": {
    "structures": [25750],
  },
  "extensions/renderer/resources/extensions_renderer_resources.grd": {
    "includes": [25800],
    "structures": [25900],
  },
  "extensions/extensions_strings.grd": {
    "messages": [25950],
  },
  "extensions/shell/app_shell_resources.grd": {
    "includes": [26350],
  },
  "chrome/browser/resources/memory_internals_resources.grd": {
    "includes": [26450],
  },
  "chrome/browser/resources/password_manager_internals_resources.grd": {
    "includes": [26650],
  },
  "device/bluetooth/bluetooth_strings.grd": {
    "messages": [26950],
  },
  "ui/file_manager/file_manager_resources.grd": {
    "includes": [27060],
  },
  "components/chrome_apps/chrome_apps_resources.grd": {
    "includes": [27240],
  },
  "ui/login/login_resources.grd": {
    "includes": [27260],
  },
  "chrome/browser/resources/translate_internals_resources.grd": {
    "includes": [27270],
  },
  "chrome/browser/resources/sync_file_system_internals_resources.grd": {
    "includes": [27280],
  },
  "chrome/app/address_input_strings.grd": {
    "messages": [27380],
  },
  "remoting/resources/remoting_strings.grd": {
    "messages": [27830],
  },
  "components/components_strings.grd": {
    "messages": [28280],
  },
  # Chromium strings and Google Chrome strings must start at the same id.
  # We only use one file depending on whether we're building Chromium or
  # Google Chrome.
  "components/components_chromium_strings.grd": {
    "messages": [29550],
  },
  "components/components_google_chrome_strings.grd": {
    "messages": [29550],
  },
  "components/resources/components_resources.grd": {
    "includes": [29600],
  },
  "components/resources/components_scaled_resources.grd": {
    "structures": [30150],
  },
  "third_party/WebKit/public/blink_resources.grd": {
    "includes": [30370],
    "structures": [30670],
  },
  "chrome/browser/resources/md_policy/policy_resources.grd": {
    "structures": [30900],
  },
  "chrome/browser/resources/settings/settings_resources.grd": {
    "structures": [30920],
  },

  # Resource ids starting at 31000 are reserved for projects built on Chromium.
}