前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【专业技术】谷歌浏览器是如何编译出来的?

【专业技术】谷歌浏览器是如何编译出来的?

作者头像
程序员互动联盟
发布2018-03-15 17:09:30
1K0
发布2018-03-15 17:09:30
举报

当我们编译chromium时,执行glient背后发生了什么?google为chromium的编译究竟做了哪些事情,我们通常并不需要亲自改这些编译规则,古人尚且知其然知其所以然,我们理应弄清楚发生在她背后的原理。下篇这篇小文,揭开一些发生在glient背后的蹊跷,让我们走进glient的世界。

gclient最后会执行hooks里的动作,而在chromium的代码配置文件中设置的hooks是运行src/build/gyp_chromium文件。下面分析这个文件的作用以及运行过程。

定义两个路径分别是script_dir和chromium_src,这里分别是脚本所在的路径和它的父目录。然后定义两个函数apply_gyp_environment和additional_include_files。

在程序运行开始就检查是否设置了环境变量SKIP_CHROMIUM_GYP_ENV,如果没有则调用函数apply_gyp_environment尝试读取chromium.gyp_env。

def apply_gyp_environment(file_path=None):

"""

Reads in a *.gyp_env file and applies the valid keys to os.environ.

"""

if not file_path or not os.path.exists(file_path):

return

file_contents = open(file_path).read()

try:

file_data = eval(file_contents, {'__builtins__': None}, None)

except SyntaxError, e:

e.filename = os.path.abspath(file_path)

raise

supported_vars = ( 'CHROMIUM_GYP_FILE',

'CHROMIUM_GYP_SYNTAX_CHECK',

'GYP_DEFINES',

'GYP_GENERATOR_FLAGS',

'GYP_GENERATOR_OUTPUT', )

for var in supported_vars:

val = file_data.get(var)

if val:

if var in os.environ:

print 'INFO: Environment value for "%s" overrides value in %s.' % (

var, os.path.abspath(file_path)

)

else:

os.environ[var] = val

读取file_path的内容,赋值给file_data。eval函数求值file_data字符串的值,其结果file_data是dict。读取其中的内容,与环境定义的变量supported_vars比较,如果环境中存在的变量则保持不变,否则加入到环境。

如果没有指定gyp文件,则添加all.gyp路径到args中,args.append(os.path.join(script_dir, 'all.gyp')),并且args.extend(['-I' + i for i in additional_include_files(args)])把参数中以-I指定的路径加入到args中,在本例中args开始为空。

########## gyp_chromium ##############

def additional_include_files(args=[]):

"""

Returns a list of additional (.gypi) files to include, without

duplicating ones that are already specified on the command line.

"""

# Determine the include files specified on the command line.

# This doesn't cover all the different option formats you can use,

# but it's mainly intended to avoid duplicating flags on the automatic

# makefile regeneration which only uses this format.

specified_includes = set()

for arg in args:

if arg.startswith('-I') and len(arg) > 2:

specified_includes.add(os.path.realpath(arg[2:]))

result = []

def AddInclude(path):

if os.path.realpath(path) not in specified_includes:

result.append(path)

# Always include common.gypi & features_override.gypi

AddInclude(os.path.join(script_dir, 'common.gypi'))

AddInclude(os.path.join(script_dir, 'features_override.gypi'))

# Optionally add supplemental .gypi files if present.

supplements = glob.glob(os.path.join(chrome_src, '*', 'supplement.gypi'))

for supplement in supplements:

AddInclude(supplement)

return result

additional_include_files函数的作用是除了命令行指定的路径外,包含chrome_src目录下的所有supplement.gypi文件以及script_dir下的common.gypi和features_override.gypi。还有all.gyp文件的路径组成了args。最后调用sys.exit(gyp.main(args))。

转自:http://blog.csdn.net/hjx5200/article/details/42744125

本文参与 腾讯云自媒体分享计划,分享自微信公众号。
原始发表:2016-01-23,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 程序员互动联盟 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档