Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 entries below are organized into sections. When adding new entries, | 10 # The entries below are organized into sections. When adding new entries, |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 23 # The first entry in the file, SRCDIR, is special: It is a relative path from | 23 # The first entry in the file, SRCDIR, is special: It is a relative path from |
| 24 # this file to the base of your checkout. | 24 # this file to the base of your checkout. |
| 25 "SRCDIR": "../..", | 25 "SRCDIR": "../..", |
| 26 | 26 |
| 27 # START chrome/app section. | 27 # START chrome/app section. |
| 28 # Previous versions of this file started with resource id 400, so stick with | 28 # Previous versions of this file started with resource id 400, so stick with |
| 29 # that. | 29 # that. |
| 30 # | 30 # |
| 31 # chrome/ and ios/chrome/ must start at the same id. | 31 # chrome/ and ios/chrome/ must start at the same id. |
| 32 # App only use one file depending on whether it is iOS or other platform. | 32 # App only use one file depending on whether it is iOS or other platform. |
| 33 "chrome/app/address_input_strings.grd": { | |
| 34 "messages": [400], | |
| 35 }, | |
| 36 | |
| 37 # Chromium strings and Google Chrome strings must start at the same id. | 33 # Chromium strings and Google Chrome strings must start at the same id. |
| 38 # We only use one file depending on whether we're building Chromium or | 34 # We only use one file depending on whether we're building Chromium or |
| 39 # Google Chrome. | 35 # Google Chrome. |
| 40 "chrome/app/chromium_strings.grd": { | 36 "chrome/app/chromium_strings.grd": { |
| 41 "messages": [500], | 37 "messages": [400], |
| 42 }, | 38 }, |
| 43 "chrome/app/google_chrome_strings.grd": { | 39 "chrome/app/google_chrome_strings.grd": { |
| 44 "messages": [500], | 40 "messages": [400], |
| 45 }, | 41 }, |
| 46 | 42 |
| 47 # Leave lots of space for generated_resources since it has most of our | 43 # Leave lots of space for generated_resources since it has most of our |
| 48 # strings. | 44 # strings. |
| 49 "chrome/app/generated_resources.grd": { | 45 "chrome/app/generated_resources.grd": { |
| 50 "messages": [900], | 46 "messages": [800], |
| 51 }, | 47 }, |
| 52 | 48 |
| 53 "chrome/app/resources/locale_settings.grd": { | 49 "chrome/app/resources/locale_settings.grd": { |
| 54 "messages": [10000], | 50 "messages": [10000], |
| 55 }, | 51 }, |
| 56 | 52 |
| 57 # These each start with the same resource id because we only use one | 53 # These each start with the same resource id because we only use one |
| 58 # file for each build (chromiumos, google_chromeos, linux, mac, or win). | 54 # file for each build (chromiumos, google_chromeos, linux, mac, or win). |
| 59 "chrome/app/resources/locale_settings_chromiumos.grd": { | 55 "chrome/app/resources/locale_settings_chromiumos.grd": { |
| 60 "messages": [10100], | 56 "messages": [10100], |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 199 "<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing/tracing_resources.grd": { | 195 "<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing/tracing_resources.grd": { |
| 200 "includes": [20550], | 196 "includes": [20550], |
| 201 }, | 197 }, |
| 202 # END content/ section. | 198 # END content/ section. |
| 203 | 199 |
| 204 # START ios/ section. | 200 # START ios/ section. |
| 205 # | 201 # |
| 206 # chrome/ and ios/chrome/ must start at the same id. | 202 # chrome/ and ios/chrome/ must start at the same id. |
| 207 # App only use one file depending on whether it is iOS or other platform. | 203 # App only use one file depending on whether it is iOS or other platform. |
| 208 "ios/chrome/app/resources/ios_resources.grd": { | 204 "ios/chrome/app/resources/ios_resources.grd": { |
| 209 "includes": [400], | 205 "includes": [500], |
| 210 "structures": [1000], | 206 "structures": [1100], |
| 211 }, | 207 }, |
| 212 | 208 |
| 213 # Chromium strings and Google Chrome strings must start at the same id. | 209 # Chromium strings and Google Chrome strings must start at the same id. |
| 214 # We only use one file depending on whether we're building Chromium or | 210 # We only use one file depending on whether we're building Chromium or |
| 215 # Google Chrome. | 211 # Google Chrome. |
| 216 "ios/chrome/app/strings/ios_chromium_strings.grd": { | 212 "ios/chrome/app/strings/ios_chromium_strings.grd": { |
| 217 "messages": [1500], | 213 "messages": [1600], |
| 218 }, | 214 }, |
| 219 "ios/chrome/app/strings/ios_google_chrome_strings.grd": { | 215 "ios/chrome/app/strings/ios_google_chrome_strings.grd": { |
| 220 "messages": [1500], | 216 "messages": [1600], |
| 221 }, | 217 }, |
| 222 | 218 |
| 223 "ios/chrome/app/strings/ios_strings.grd": { | 219 "ios/chrome/app/strings/ios_strings.grd": { |
| 224 "messages": [2000], | 220 "messages": [2100], |
| 225 }, | 221 }, |
| 226 "ios/chrome/app/theme/ios_theme_resources.grd": { | 222 "ios/chrome/app/theme/ios_theme_resources.grd": { |
| 227 "structures": [2500], | 223 "structures": [2600], |
| 228 }, | 224 }, |
| 229 "ios/chrome/share_extension/strings/ios_share_extension_strings.grd": { | 225 "ios/chrome/share_extension/strings/ios_share_extension_strings.grd": { |
| 230 "messages": [3000], | 226 "messages": [3100], |
| 231 }, | 227 }, |
| 232 "ios/chrome/today_extension/strings/ios_today_extension_strings.grd": { | 228 "ios/chrome/today_extension/strings/ios_today_extension_strings.grd": { |
| 233 "messages": [3010], | 229 "messages": [3110], |
| 234 }, | 230 }, |
| 235 "ios/chrome/search_widget_extension/strings/ios_search_widget_extension_string s.grd": { | 231 "ios/chrome/search_widget_extension/strings/ios_search_widget_extension_string s.grd": { |
| 236 "messages": [3050], | 232 "messages": [3150], |
| 237 }, | 233 }, |
| 238 | 234 |
| 239 # content/ and ios/web/ must start at the same id. | 235 # content/ and ios/web/ must start at the same id. |
| 240 # App only use one file depending on whether it is iOS or other platform. | 236 # App only use one file depending on whether it is iOS or other platform. |
| 241 "ios/web/ios_web_resources.grd": { | 237 "ios/web/ios_web_resources.grd": { |
| 242 "includes": [20000], | 238 "includes": [20100], |
| 243 }, | 239 }, |
| 244 "ios/web/test/test_resources.grd": { | 240 "ios/web/test/test_resources.grd": { |
| 245 "includes": [22000], | 241 "includes": [22100], |
| 246 }, | 242 }, |
| 247 # END ios/ section. | 243 # END ios/ section. |
| 248 | 244 |
| 249 # START "everything else" section. | 245 # START "everything else" section. |
| 250 # Everything but chrome/, components/, content/, and ios/ | 246 # Everything but chrome/, components/, content/, and ios/ |
| 251 "android_webview/ui/aw_resources.grd": { | 247 "android_webview/ui/aw_resources.grd": { |
| 252 "includes": [23500], | 248 "includes": [23500], |
| 253 }, | 249 }, |
| 254 "android_webview/ui/aw_strings.grd": { | 250 "android_webview/ui/aw_strings.grd": { |
| 255 "messages": [23510], | 251 "messages": [23510], |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 294 }, | 290 }, |
| 295 | 291 |
| 296 "net/base/net_resources.grd": { | 292 "net/base/net_resources.grd": { |
| 297 "includes": [24750], | 293 "includes": [24750], |
| 298 }, | 294 }, |
| 299 | 295 |
| 300 "remoting/resources/remoting_strings.grd": { | 296 "remoting/resources/remoting_strings.grd": { |
| 301 "messages": [24800], | 297 "messages": [24800], |
| 302 }, | 298 }, |
| 303 | 299 |
| 300 "third_party/libaddressinput/address_input_strings.grd": { | |
| 301 "messages": [25300], | |
|
sdefresne
2017/05/17 16:08:13
I'm not sure about renumbering all those resources
Moe
2017/05/17 17:37:44
Done.
| |
| 302 }, | |
| 303 | |
| 304 "third_party/WebKit/public/blink_image_resources.grd": { | 304 "third_party/WebKit/public/blink_image_resources.grd": { |
| 305 "structures": [25300], | 305 "structures": [25400], |
| 306 }, | 306 }, |
| 307 "third_party/WebKit/public/blink_resources.grd": { | 307 "third_party/WebKit/public/blink_resources.grd": { |
| 308 "includes": [25400], | 308 "includes": [25500], |
| 309 }, | 309 }, |
| 310 | 310 |
| 311 "ui/app_list/resources/app_list_resources.grd": { | 311 "ui/app_list/resources/app_list_resources.grd": { |
| 312 "structures": [25800], | 312 "structures": [25900], |
| 313 }, | 313 }, |
| 314 "ui/chromeos/resources/ui_chromeos_resources.grd": { | 314 "ui/chromeos/resources/ui_chromeos_resources.grd": { |
| 315 "structures": [25820], | 315 "structures": [25920], |
| 316 }, | 316 }, |
| 317 "ui/chromeos/ui_chromeos_strings.grd": { | 317 "ui/chromeos/ui_chromeos_strings.grd": { |
| 318 "messages": [25920], | 318 "messages": [26020], |
| 319 }, | 319 }, |
| 320 "ui/file_manager/file_manager_resources.grd": { | 320 "ui/file_manager/file_manager_resources.grd": { |
| 321 "includes": [26150], | 321 "includes": [26250], |
| 322 }, | 322 }, |
| 323 "ui/keyboard/keyboard_resources.grd": { | 323 "ui/keyboard/keyboard_resources.grd": { |
| 324 "includes": [26400], | 324 "includes": [26500], |
| 325 }, | 325 }, |
| 326 "ui/login/login_resources.grd": { | 326 "ui/login/login_resources.grd": { |
| 327 "includes": [26500], | 327 "includes": [26600], |
| 328 }, | 328 }, |
| 329 "ui/resources/ui_resources.grd": { | 329 "ui/resources/ui_resources.grd": { |
| 330 "structures": [26600], | 330 "structures": [26700], |
| 331 }, | 331 }, |
| 332 "ui/resources/ui_unscaled_resources.grd": { | 332 "ui/resources/ui_unscaled_resources.grd": { |
| 333 "includes": [26850], | 333 "includes": [26950], |
| 334 }, | 334 }, |
| 335 "ui/strings/app_locale_settings.grd": { | 335 "ui/strings/app_locale_settings.grd": { |
| 336 "messages": [26900], | 336 "messages": [27000], |
| 337 }, | 337 }, |
| 338 "ui/strings/ui_strings.grd": { | 338 "ui/strings/ui_strings.grd": { |
| 339 "messages": [26950], | 339 "messages": [27050], |
| 340 }, | 340 }, |
| 341 "ui/views/resources/views_resources.grd": { | 341 "ui/views/resources/views_resources.grd": { |
| 342 "structures": [27150], | 342 "structures": [27250], |
| 343 }, | 343 }, |
| 344 "ui/webui/resources/webui_resources.grd": { | 344 "ui/webui/resources/webui_resources.grd": { |
| 345 "includes": [27450], | 345 "includes": [27550], |
| 346 "structures": [27650], | 346 "structures": [27750], |
| 347 }, | 347 }, |
| 348 | 348 |
| 349 # This file is generated during the build. | 349 # This file is generated during the build. |
| 350 "<(SHARED_INTERMEDIATE_DIR)/devtools/devtools_resources.grd": { | 350 "<(SHARED_INTERMEDIATE_DIR)/devtools/devtools_resources.grd": { |
| 351 "includes": [28450], | 351 "includes": [28550], |
| 352 }, | 352 }, |
| 353 "devtools_resources.grd": { | 353 "devtools_resources.grd": { |
| 354 "includes": [28450], | 354 "includes": [28550], |
| 355 }, | 355 }, |
| 356 | 356 |
| 357 "cloud_print/virtual_driver/win/install/virtual_driver_setup_resources.grd": { | 357 "cloud_print/virtual_driver/win/install/virtual_driver_setup_resources.grd": { |
| 358 "includes": [28600], | 358 "includes": [28700], |
| 359 » "messages": [28650], | 359 » "messages": [28750], |
| 360 }, | 360 }, |
| 361 # END "everything else" section. | 361 # END "everything else" section. |
| 362 # Everything but chrome/, components/, content/, and ios/ | 362 # Everything but chrome/, components/, content/, and ios/ |
| 363 | 363 |
| 364 # Thinking about appending to the end? | 364 # Thinking about appending to the end? |
| 365 # Please read the header and find the right section above instead. | 365 # Please read the header and find the right section above instead. |
| 366 | 366 |
| 367 # Resource ids starting at 31000 are reserved for projects built on Chromium. | 367 # Resource ids starting at 31000 are reserved for projects built on Chromium. |
| 368 } | 368 } |
| OLD | NEW |