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

Side by Side Diff: build/SConscript.main

Issue 14902: Add using_generated_resources.scons to the build. This (Closed)
Patch Set: derot Created 11 years, 11 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 | chrome/browser/browser.scons » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2008 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 import shutil 6 import shutil
7 import sys 7 import sys
8 8
9 9
10 if sys.platform == 'win32': 10 if sys.platform == 'win32':
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 LIBXSLT_DIR = '$THIRD_PARTY_DIR/libxslt', 130 LIBXSLT_DIR = '$THIRD_PARTY_DIR/libxslt',
131 LZMA_SDK_DIR = '$THIRD_PARTY_DIR/lzma_sdk', 131 LZMA_SDK_DIR = '$THIRD_PARTY_DIR/lzma_sdk',
132 MODP_B64_DIR = '$THIRD_PARTY_DIR/modp_b64', 132 MODP_B64_DIR = '$THIRD_PARTY_DIR/modp_b64',
133 NPAPI_DIR = '$THIRD_PARTY_DIR/npapi', 133 NPAPI_DIR = '$THIRD_PARTY_DIR/npapi',
134 SQLITE_DIR = '$THIRD_PARTY_DIR/sqlite', 134 SQLITE_DIR = '$THIRD_PARTY_DIR/sqlite',
135 ZLIB_DIR = '$THIRD_PARTY_DIR/zlib', 135 ZLIB_DIR = '$THIRD_PARTY_DIR/zlib',
136 136
137 THIRD_PARTY_WEBKIT_DIR = '$THIRD_PARTY_DIR/WebKit', 137 THIRD_PARTY_WEBKIT_DIR = '$THIRD_PARTY_DIR/WebKit',
138 138
139 GTK_CLIP_DUMP_DIR = '$TOOLS_DIR/gtk_clipboard_dump', 139 GTK_CLIP_DUMP_DIR = '$TOOLS_DIR/gtk_clipboard_dump',
140 GRIT_DIR = '$TOOLS_DIR/grit',
140 141
141 PYTHON=sys.executable, 142 PYTHON=sys.executable,
142 143
143 PERL = 'perl', 144 PERL = 'perl',
144 PERL_INCLUDE_FLAG = '-I ', 145 PERL_INCLUDE_FLAG = '-I ',
145 PERL_INCLUDE_SUFFIX = '', 146 PERL_INCLUDE_SUFFIX = '',
146 _PERL_INCLUDE_FLAGS = ('${_concat(PERL_INCLUDE_FLAG, ' 147 _PERL_INCLUDE_FLAGS = ('${_concat(PERL_INCLUDE_FLAG, '
147 'PERL_INCLUDE_PATH, ' 148 'PERL_INCLUDE_PATH, '
148 'PERL_INCLUDE_SUFFIX,' 149 'PERL_INCLUDE_SUFFIX,'
149 '__env__, RDirs, TARGET, SOURCE)}'), 150 '__env__, RDirs, TARGET, SOURCE)}'),
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 'all_libraries', 811 'all_libraries',
811 'all_languages', 812 'all_languages',
812 'all_programs', 813 'all_programs',
813 'all_test_programs', 814 'all_test_programs',
814 ], projects = [p], 815 ], projects = [p],
815 COMPONENT_VS_PROJECT_SCRIPT_PATH=( 816 COMPONENT_VS_PROJECT_SCRIPT_PATH=(
816 'cd $$(ProjectDir)/$VS_PROJECT_TO_MAIN_DIR && hammer.bat'), 817 'cd $$(ProjectDir)/$VS_PROJECT_TO_MAIN_DIR && hammer.bat'),
817 ) 818 )
818 819
819 # ------------------------------------------------------------------------- 820 # -------------------------------------------------------------------------
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698