1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- vars = {
- 'chromium_version':
- '63.0.3239.150',
- 'libchromiumcontent_revision':
- '1c542968990da951df27c8a0371a4ab5494a5a6c',
- 'node_version':
- 'v9.7.0-33-g538a5023af',
- 'native_mate_revision':
- '4cd7d113915de0cc08e9a218be35bff9c7361906',
- 'chromium_git':
- 'https://chromium.googlesource.com',
- 'electron_git':
- 'https://github.com/electron',
- }
- deps = {
- 'src':
- (Var("chromium_git")) + '/chromium/src.git@' + (Var("chromium_version")),
- 'src/libchromiumcontent':
- (Var("electron_git")) + '/libchromiumcontent.git@' + (Var("libchromiumcontent_revision")),
- 'src/third_party/electron_node':
- (Var("electron_git")) + '/node.git@' + (Var("node_version")),
- 'src/third_party/native_mate':
- (Var("electron_git")) + '/native-mate.git@' + (Var("native_mate_revision")),
- }
- hooks = [
- {
- 'action': [
- 'src/libchromiumcontent/script/apply-patches'
- ],
- 'pattern':
- 'src/libchromiumcontent',
- 'name':
- 'patch_chromium'
- },
- {
- 'action': [
- 'src/electron/script/update-external-binaries.py'
- ],
- 'pattern':
- 'src/electron/script/update-external-binaries.py',
- 'name':
- 'electron_external_binaries'
- },
- {
- 'action': [
- 'bash',
- '-c',
- # NOTE(nornagon): this ridiculous {{}} stuff is because these strings get
- # variable-substituted twice by gclient.
- 'echo -e "#\\n{{{{\'variables\':{{{{}}}}}}}}" > src/third_party/electron_node/config.gypi',
- ],
- 'pattern': 'src/third_party/electron_node',
- 'name': 'touch_node_config_gypi'
- },
- {
- 'action': [
- 'bash',
- '-c',
- 'cd src/electron; npm install',
- ],
- 'pattern': 'src/electron/package.json',
- 'name': 'electron_npm_deps'
- },
- ]
- recursedeps = [
- 'src',
- 'src/libchromiumcontent',
- ]
|