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

Side by Side Diff: chrome/chrome.gyp

Issue 7053009: Add chrome://quota-internals/ resources (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add descriptions Created 9 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 'includes': [ '../build/grit_action.gypi' ], 311 'includes': [ '../build/grit_action.gypi' ],
312 }, 312 },
313 { 313 {
314 'action_name': 'options_resources', 314 'action_name': 'options_resources',
315 'variables': { 315 'variables': {
316 'grit_grd_file': 'browser/resources/options_resources.grd', 316 'grit_grd_file': 'browser/resources/options_resources.grd',
317 }, 317 },
318 'includes': [ '../build/grit_action.gypi' ], 318 'includes': [ '../build/grit_action.gypi' ],
319 }, 319 },
320 { 320 {
321 'action_name': 'quota_internals_resources',
322 'variables': {
323 'grit_grd_file': 'browser/resources/quota_internals_resources.grd',
324 },
325 'includes': [ '../build/grit_action.gypi' ],
326 },
327 {
321 'action_name': 'shared_resources', 328 'action_name': 'shared_resources',
322 'variables': { 329 'variables': {
323 'grit_grd_file': 'browser/resources/shared_resources.grd', 330 'grit_grd_file': 'browser/resources/shared_resources.grd',
324 }, 331 },
325 'includes': [ '../build/grit_action.gypi' ], 332 'includes': [ '../build/grit_action.gypi' ],
326 }, 333 },
327 { 334 {
328 'action_name': 'sync_internals_resources', 335 'action_name': 'sync_internals_resources',
329 'variables': { 336 'variables': {
330 'grit_grd_file': 'browser/resources/sync_internals_resources.grd', 337 'grit_grd_file': 'browser/resources/sync_internals_resources.grd',
(...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after
1205 'actions': [ 1212 'actions': [
1206 { 1213 {
1207 'action_name': 'repack_resources', 1214 'action_name': 'repack_resources',
1208 'variables': { 1215 'variables': {
1209 'pak_inputs': [ 1216 'pak_inputs': [
1210 '<(grit_out_dir)/component_extension_resources.pak', 1217 '<(grit_out_dir)/component_extension_resources.pak',
1211 '<(grit_out_dir)/devtools_frontend_resources.pak', 1218 '<(grit_out_dir)/devtools_frontend_resources.pak',
1212 '<(grit_out_dir)/devtools_resources.pak', 1219 '<(grit_out_dir)/devtools_resources.pak',
1213 '<(grit_out_dir)/options_resources.pak', 1220 '<(grit_out_dir)/options_resources.pak',
1214 '<(grit_out_dir)/net_internals_resources.pak', 1221 '<(grit_out_dir)/net_internals_resources.pak',
1222 '<(grit_out_dir)/quota_internals_resources.pak',
1215 '<(grit_out_dir)/shared_resources.pak', 1223 '<(grit_out_dir)/shared_resources.pak',
1216 '<(grit_out_dir)/sync_internals_resources.pak', 1224 '<(grit_out_dir)/sync_internals_resources.pak',
1217 ], 1225 ],
1218 }, 1226 },
1219 'inputs': [ 1227 'inputs': [
1220 '<(repack_path)', 1228 '<(repack_path)',
1221 '<@(pak_inputs)', 1229 '<@(pak_inputs)',
1222 ], 1230 ],
1223 'outputs': [ 1231 'outputs': [
1224 '<(PRODUCT_DIR)/resources.pak', 1232 '<(PRODUCT_DIR)/resources.pak',
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
1634 }], # targets 1642 }], # targets
1635 }], # os_posix == 1 and OS != "mac" 1643 }], # os_posix == 1 and OS != "mac"
1636 ], # 'conditions' 1644 ], # 'conditions'
1637 } 1645 }
1638 1646
1639 # Local Variables: 1647 # Local Variables:
1640 # tab-width:2 1648 # tab-width:2
1641 # indent-tabs-mode:nil 1649 # indent-tabs-mode:nil
1642 # End: 1650 # End:
1643 # vim: set expandtab tabstop=2 shiftwidth=2: 1651 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698