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

Side by Side Diff: chrome/app/chrome_resources.scons

Issue 27255: Linux: first part of removing GTK from the renderer (Closed)
Patch Set: switch to WebKit style names for resources Created 11 years, 9 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
« no previous file with comments | « no previous file | webkit/glue/chromium_bridge_impl.cc » ('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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 import os 5 import os
6 6
7 Import('env') 7 Import('env')
8 8
9 env = env.Clone() 9 env = env.Clone()
10 10
(...skipping 10 matching lines...) Expand all
21 generated = env.GRIT( 21 generated = env.GRIT(
22 '$TARGET_ROOT/grit_derived_sources/fake_' + os.path.basename(grd_file), 22 '$TARGET_ROOT/grit_derived_sources/fake_' + os.path.basename(grd_file),
23 grd_file) 23 grd_file)
24 24
25 if env.Bit('linux'): 25 if env.Bit('linux'):
26 chrome_pak = env.Repack('$TARGET_ROOT/chrome.pak', 26 chrome_pak = env.Repack('$TARGET_ROOT/chrome.pak',
27 ['$TARGET_ROOT/grit_derived_sources/browser_resources.pak', 27 ['$TARGET_ROOT/grit_derived_sources/browser_resources.pak',
28 '$TARGET_ROOT/grit_derived_sources/debugger_resources.pak', 28 '$TARGET_ROOT/grit_derived_sources/debugger_resources.pak',
29 '$TARGET_ROOT/grit_derived_sources/common_resources.pak', 29 '$TARGET_ROOT/grit_derived_sources/common_resources.pak',
30 '$TARGET_ROOT/grit_derived_sources/renderer_resources.pak', 30 '$TARGET_ROOT/grit_derived_sources/renderer_resources.pak',
31 '$TARGET_ROOT/grit_derived_sources/webkit_resources.pak',
31 ] 32 ]
32 ) 33 )
33 i = env.Install('$DESTINATION_ROOT', chrome_pak) 34 i = env.Install('$DESTINATION_ROOT', chrome_pak)
34 env.Requires('$DESTINATION_ROOT/chrome', i) 35 env.Requires('$DESTINATION_ROOT/chrome', i)
35 env.Requires('$DESTINATION_ROOT/unit_tests', i) 36 env.Requires('$DESTINATION_ROOT/unit_tests', i)
OLDNEW
« no previous file with comments | « no previous file | webkit/glue/chromium_bridge_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698