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

Side by Side Diff: chrome/chrome_resources.gyp

Issue 1377213003: [MD settings] moving settings strings to a separate grd file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
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 'variables': { 5 'variables': {
6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
7 'about_credits_file': '<(SHARED_INTERMEDIATE_DIR)/about_credits.html', 7 'about_credits_file': '<(SHARED_INTERMEDIATE_DIR)/about_credits.html',
8 'additional_modules_list_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/i nternal/additional_modules_list.txt', 8 'additional_modules_list_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/i nternal/additional_modules_list.txt',
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 'includes': [ '../build/grit_action.gypi' ], 266 'includes': [ '../build/grit_action.gypi' ],
267 }, 267 },
268 { 268 {
269 # GN version: //chrome/app:google_chrome_strings 269 # GN version: //chrome/app:google_chrome_strings
270 'action_name': 'generate_google_chrome_strings', 270 'action_name': 'generate_google_chrome_strings',
271 'variables': { 271 'variables': {
272 'grit_grd_file': 'app/google_chrome_strings.grd', 272 'grit_grd_file': 'app/google_chrome_strings.grd',
273 }, 273 },
274 'includes': [ '../build/grit_action.gypi' ], 274 'includes': [ '../build/grit_action.gypi' ],
275 }, 275 },
276 {
277 # GN version: //chrome/app:settings_strings
278 'action_name': 'generate_settings_strings',
279 'variables': {
280 'grit_grd_file': 'app/settings_strings.grd',
281 },
282 'includes': [ '../build/grit_action.gypi' ],
283 },
276 ], 284 ],
277 }, 285 },
278 { 286 {
279 # GN version: //chrome/app:make_generated_resources_map 287 # GN version: //chrome/app:make_generated_resources_map
280 'target_name': 'chrome_strings_map', 288 'target_name': 'chrome_strings_map',
281 'type': 'none', 289 'type': 'none',
282 'dependencies': [ 'chrome_strings', ], 290 'dependencies': [ 'chrome_strings', ],
283 'actions': [ 291 'actions': [
284 { 292 {
285 'action_name': 'generate_resources_map', 293 'action_name': 'generate_resources_map',
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 '<(generator_path)', 664 '<(generator_path)',
657 'credits', 665 'credits',
658 '<(about_credits_file)', 666 '<(about_credits_file)',
659 ], 667 ],
660 'message': 'Generating about:credits', 668 'message': 'Generating about:credits',
661 }, 669 },
662 ], 670 ],
663 }, 671 },
664 ], # targets 672 ], # targets
665 } 673 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698