c++ - Windows Chromium Build Errors: No such file or directory 2000 times -


i building chromium source code on windows 7 x64 computer. downloaded source using build instructions provided , set environment told instruction pages. can open solution in vs2010pro (albeit taking while), , can edit code.

when try build solution, thousands of errors (last time, 2703). first batch cmd.exe exited error code 1; there 20 of those. of rest complain c++ header files not found compiler. here few randomly selected throughout long error list.

error 138: error c1083: cannot open include file: 'eventinterfaces.h': no such file or directory d:\chromium\src\third_party\webkit\source\core\dom\eventnames.h in project webcore_rendering

error 1952: error c1083: cannot open include file: 'grit/ui_resources.h': no such file or directory d:\chromium\src\chrome\browser\ui\chrome_style.cc in project browser_ui

error 2482: error c1083: cannot open include file: 'grit/generated_resources.h': no such file or directory d:\chromium\src\chrome\browser\printing\print_dialog_cloud.cc in project browser

now, not projects fail build. last time, 526 projects succeeded , only 199 failed. having followed instructions word word, , tried clean download twice, don't see wrong.

edit: still fails, looking through output noticed cause of cmd.exe errors

28>------ build started: project: convert_dict, configuration: debug win32 ------ 27>  traceback (most recent call last): 27>    file "../tools/grit/grit/format/repack.py", line 27, in <module> 27>      main(sys.argv) 27>    file "../tools/grit/grit/format/repack.py", line 24, in main 27>      grit.format.data_pack.repack(argv[1], argv[2:]) 27>    file "../tools/grit/grit/format\../..\grit\format\data_pack.py", line 120, in repack 27>      new_content = readdatapack(filename) 27>    file "../tools/grit/grit/format\../..\grit\format\data_pack.py", line 54, in readdatapack 27>      data = util.readfile(input_file, util.binary) 27>    file "../tools/grit/grit/format\../..\grit\util.py", line 207, in readfile 27>      open(filename, mode) f: 27>  ioerror: [errno 2] no such file or directory: 'd:/chromium/src/build/debug/obj/global_intermediate/content/content_resources.pak' 27>c:\program files (x86)\msbuild\microsoft.cpp\v4.0\microsoft.cppcommon.targets(151,5): error msb6006: "cmd.exe" exited code 1. 


Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -