Lines Matching +full:ninja +full:- +full:linux
2 " Use of this source code is governed by a BSD-style license that can be
5 " Adds a "Compile this file" function, using ninja. On Mac, binds Cmd-k to
6 " this command. On Windows, Ctrl-F7 (which is the same as the VS default).
7 " On Linux, <Leader>o, which is \o by default ("o"=creates .o files)
9 " Adds a "Build this target" function, using ninja. This is not bound
14 " Requires that gyp has already generated build.ninja files, and that ninja is
16 " Bumps the number of parallel jobs in ninja automatically if goma is
20 " so /path/to/src/tools/vim/ninja-build.vim
50 sys.path.append(os.path.join(v8_root, 'tools', 'ninja'))
58 flags = ['-j', '512']
60 build_cmd = ' '.join(['ninja'] + flags + ['-C', build_dir, targets])
68 # ninja needs filepaths for the ^ syntax to be relative to the
109 command! -nargs=* CrBuild call CrBuild(<q-args>)
112 map <D-k> :CrCompileFile<cr>
113 imap <D-k> <esc>:CrCompileFile<cr>
115 map <C-F7> :CrCompileFile<cr>
116 imap <C-F7> <esc>:CrCompileFile<cr>