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

Unified Diff: chrome/tools/build/win/dependencies.py

Issue 42013: Slight code change to make some global variables const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/tools/crash_service/crash_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/build/win/dependencies.py
===================================================================
--- chrome/tools/build/win/dependencies.py (revision 11293)
+++ chrome/tools/build/win/dependencies.py (working copy)
@@ -157,11 +157,12 @@
except:
raise Error("Failed to load " + list_file)
- # The dependency files have dependencies in two section - dependents and delay_loaded
- # Also various distributions of Chromium can have different dependencies. So first
- # we read generic dependencies ("dependents" and "delay_loaded"). If distribution
- # specific dependencies exist (i.e. "dependents_google_chrome" and
- # "delay_loaded_google_chrome") we use those instead.
+ # The dependency files have dependencies in two section - dependents and
+ # delay_loaded. Also various distributions of Chromium can have different
+ # dependencies. So first we read generic dependencies ("dependents" and
+ # "delay_loaded"). If distribution specific dependencies exist
+ # (i.e. "dependents_google_chrome" and "delay_loaded_google_chrome") we use
+ # those instead.
distribution = DIST_DEFAULT
if DIST_ENV_VAR in os.environ.keys():
distribution = os.environ[DIST_ENV_VAR].lower()
« no previous file with comments | « no previous file | chrome/tools/crash_service/crash_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698