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

Side by Side Diff: chrome/chrome_resources.gyp

Issue 14084008: Boilerplate code to add chrome://syncfs-internals page for debugging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase with similarity=20 Created 7 years, 7 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/chrome_repack_resources.gypi ('k') | chrome/common/url_constants.h » ('j') | 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 '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 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], 8 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'],
9 }, 9 },
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'chrome_extra_resources', 12 'target_name': 'chrome_extra_resources',
13 'type': 'none', 13 'type': 'none',
14 # These resources end up in resources.pak because they are resources 14 # These resources end up in resources.pak because they are resources
15 # used by internal pages. Putting them in a spearate pak file makes 15 # used by internal pages. Putting them in a separate pak file makes
16 # it easier for us to reference them internally. 16 # it easier for us to reference them internally.
17 'actions': [ 17 'actions': [
18 { 18 {
19 'action_name': 'memory_internals_resources', 19 'action_name': 'memory_internals_resources',
20 'variables': { 20 'variables': {
21 'grit_grd_file': 'browser/resources/memory_internals_resources.grd', 21 'grit_grd_file': 'browser/resources/memory_internals_resources.grd',
22 }, 22 },
23 'includes': [ '../build/grit_action.gypi' ], 23 'includes': [ '../build/grit_action.gypi' ],
24 }, 24 },
25 { 25 {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'includes': [ '../build/grit_action.gypi' ], 80 'includes': [ '../build/grit_action.gypi' ],
81 }, 81 },
82 { 82 {
83 'action_name': 'devtools_discovery_page_resources', 83 'action_name': 'devtools_discovery_page_resources',
84 'variables': { 84 'variables': {
85 'grit_grd_file': 85 'grit_grd_file':
86 'browser/devtools/frontend/devtools_discovery_page_resources. grd', 86 'browser/devtools/frontend/devtools_discovery_page_resources. grd',
87 }, 87 },
88 'includes': [ '../build/grit_action.gypi' ] 88 'includes': [ '../build/grit_action.gypi' ]
89 }, 89 },
90 {
91 'action_name': 'sync_file_system_internals_resources',
92 'variables': {
93 'grit_grd_file': 'browser/resources/sync_file_system_internals_r esources.grd',
94 },
95 'includes': [ '../build/grit_action.gypi' ],
96 },
90 ], 97 ],
91 'copies': [ 98 'copies': [
92 { 99 {
93 'destination': '<(PRODUCT_DIR)/resources/extension/demo', 100 'destination': '<(PRODUCT_DIR)/resources/extension/demo',
94 'files': [ 101 'files': [
95 'browser/resources/extension_resource/demo/library.js', 102 'browser/resources/extension_resource/demo/library.js',
96 ], 103 ],
97 }, 104 },
98 ], 105 ],
99 }], 106 }],
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 '<(generator_path)', 472 '<(generator_path)',
466 'credits', 473 'credits',
467 '<(about_credits_file)', 474 '<(about_credits_file)',
468 ], 475 ],
469 'message': 'Generating about:credits.', 476 'message': 'Generating about:credits.',
470 }, 477 },
471 ], 478 ],
472 }, 479 },
473 ], # targets 480 ], # targets
474 } 481 }
OLDNEW
« no previous file with comments | « chrome/chrome_repack_resources.gypi ('k') | chrome/common/url_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698