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

Side by Side Diff: chrome/chrome.gyp

Issue 7250004: Expose list of all running shared workers at chrome://workers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed Created 9 years, 5 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/browser/ui/webui/workers_ui.cc ('k') | chrome/chrome_browser.gypi » ('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) 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 'includes': [ '../build/grit_action.gypi' ], 329 'includes': [ '../build/grit_action.gypi' ],
330 }, 330 },
331 { 331 {
332 'action_name': 'sync_internals_resources', 332 'action_name': 'sync_internals_resources',
333 'variables': { 333 'variables': {
334 'grit_grd_file': 'browser/resources/sync_internals_resources.grd', 334 'grit_grd_file': 'browser/resources/sync_internals_resources.grd',
335 }, 335 },
336 'includes': [ '../build/grit_action.gypi' ], 336 'includes': [ '../build/grit_action.gypi' ],
337 }, 337 },
338 { 338 {
339 'action_name': 'workers_resources',
340 'variables': {
341 'grit_grd_file': 'browser/resources/workers_resources.grd',
342 },
343 'includes': [ '../build/grit_action.gypi' ],
344 },
345 {
339 'action_name': 'devtools_resources', 346 'action_name': 'devtools_resources',
340 # This can't use ../build/grit_action.gypi because the grd file 347 # This can't use ../build/grit_action.gypi because the grd file
341 # is generated a build time, so the trick of using grit_info to get 348 # is generated a build time, so the trick of using grit_info to get
342 # the real inputs/outputs at GYP time isn't possible. 349 # the real inputs/outputs at GYP time isn't possible.
343 'variables': { 350 'variables': {
344 'grit_cmd': ['python', '../tools/grit/grit.py'], 351 'grit_cmd': ['python', '../tools/grit/grit.py'],
345 'grit_grd_file': '<(SHARED_INTERMEDIATE_DIR)/devtools/devtools_resou rces.grd', 352 'grit_grd_file': '<(SHARED_INTERMEDIATE_DIR)/devtools/devtools_resou rces.grd',
346 }, 353 },
347 'inputs': [ 354 'inputs': [
348 '<(grit_grd_file)', 355 '<(grit_grd_file)',
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 'variables': { 1258 'variables': {
1252 'pak_inputs': [ 1259 'pak_inputs': [
1253 '<(grit_out_dir)/component_extension_resources.pak', 1260 '<(grit_out_dir)/component_extension_resources.pak',
1254 '<(grit_out_dir)/devtools_frontend_resources.pak', 1261 '<(grit_out_dir)/devtools_frontend_resources.pak',
1255 '<(grit_out_dir)/devtools_resources.pak', 1262 '<(grit_out_dir)/devtools_resources.pak',
1256 '<(grit_out_dir)/options_resources.pak', 1263 '<(grit_out_dir)/options_resources.pak',
1257 '<(grit_out_dir)/net_internals_resources.pak', 1264 '<(grit_out_dir)/net_internals_resources.pak',
1258 '<(grit_out_dir)/quota_internals_resources.pak', 1265 '<(grit_out_dir)/quota_internals_resources.pak',
1259 '<(grit_out_dir)/shared_resources.pak', 1266 '<(grit_out_dir)/shared_resources.pak',
1260 '<(grit_out_dir)/sync_internals_resources.pak', 1267 '<(grit_out_dir)/sync_internals_resources.pak',
1268 '<(grit_out_dir)/workers_resources.pak',
1261 ], 1269 ],
1262 }, 1270 },
1263 'inputs': [ 1271 'inputs': [
1264 '<(repack_path)', 1272 '<(repack_path)',
1265 '<@(pak_inputs)', 1273 '<@(pak_inputs)',
1266 ], 1274 ],
1267 'outputs': [ 1275 'outputs': [
1268 '<(PRODUCT_DIR)/resources.pak', 1276 '<(PRODUCT_DIR)/resources.pak',
1269 ], 1277 ],
1270 'action': ['python', '<(repack_path)', '<@(_outputs)', 1278 'action': ['python', '<(repack_path)', '<@(_outputs)',
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
1673 }], # targets 1681 }], # targets
1674 }], # os_posix == 1 and OS != "mac" 1682 }], # os_posix == 1 and OS != "mac"
1675 ], # 'conditions' 1683 ], # 'conditions'
1676 } 1684 }
1677 1685
1678 # Local Variables: 1686 # Local Variables:
1679 # tab-width:2 1687 # tab-width:2
1680 # indent-tabs-mode:nil 1688 # indent-tabs-mode:nil
1681 # End: 1689 # End:
1682 # vim: set expandtab tabstop=2 shiftwidth=2: 1690 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/workers_ui.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698