/external/chromium_org/tools/gn/ |
gyp_target_writer.cc | 38 void GypTargetWriter::WriteFile(const SourceFile& gyp_file, 48 base::FilePath gyp_file_path = debug_build_settings->GetFullPath(gyp_file); 69 gyp_file.GetDir(), file); 80 gyp_file.GetDir(), file);
|
gyp_helper.cc | 23 if (!target->gyp_file().is_null()) 24 return target->gyp_file(); 38 *err = Err(Location(), "Need to specify a gyp_file value for " +
|
gyp_target_writer.h | 53 static void WriteFile(const SourceFile& gyp_file,
|
command_gyp.cc | 118 debug_target->gyp_file() != release_target->gyp_file()) { 214 if (group.debug->item()->AsTarget()->gyp_file().is_null()) 277 " - \"external != true\" and \"gyp_file\" is set: This target will be\n" 281 " - \"external == true\" and \"gyp_file\" is set: The target will not\n" 288 " - \"gyp_file\" is unset: Like the previous case, but if a GN target is\n" 307 " gyp_file = \"//foo/foo.gyp\"\n" 314 " gyp_file = \"//foo/myapp.gyp\"\n"
|
target.h | 135 const SourceFile& gyp_file() const { return gyp_file_; } function in class:Target
|
/external/chromium_org/tools/gyp/test/lib/ |
TestGyp.py | 247 def run_gyp(self, gyp_file, *args, **kw): 249 Runs gyp against the specified gyp_file with the specified args. 259 run_args = ['--depth='+depth, '--format='+self.format, gyp_file] 302 def build(self, gyp_file, target=None, **kw): 305 generated from the specified gyp_file. 346 def up_to_date(self, gyp_file, target=None, **kw): 441 def build(self, gyp_file, target=None, **kw): 444 gyp_file. This logic is taken from Android's mmm. 525 def up_to_date(self, gyp_file, target=None, **kw): 535 return self.build(gyp_file, target, **kw [all...] |
/external/chromium/build/ |
gyp_chromium | 135 gyp_file = os.environ.get('CHROMIUM_GYP_FILE') 136 if gyp_file: 139 args.extend(shlex.split(gyp_file))
|
/external/chromium_org/v8/build/ |
gyp_v8 | 139 gyp_file = os.environ.get('V8_GYP_FILE') variable 140 if gyp_file: 143 args.extend(shlex.split(gyp_file))
|
/external/v8/build/ |
gyp_v8 | 132 gyp_file = os.environ.get('V8_GYP_FILE') variable 133 if gyp_file: 136 args.extend(shlex.split(gyp_file))
|
/external/chromium_org/build/ |
gyp_chromium | 238 gyp_file = os.environ.get('CHROMIUM_GYP_FILE') variable 239 if gyp_file: 242 args.extend(shlex.split(gyp_file))
|
/external/chromium_org/native_client_sdk/src/build_tools/ |
build_sdk.py | 504 gyp_file = os.path.join(SRC_DIR, 'breakpad', 'breakpad.gyp') 506 GypNinjaBuild('ia32', gyp_py, gyp_file, build_list, out_dir) 512 gyp_file = os.path.join(SRC_DIR, 'ppapi', 'native_client', 514 GypNinjaBuild(arch, gyp_py, gyp_file, 'ppapi_lib', out_dir) 524 gyp_file = os.path.join(SRC_DIR, 'ppapi', 'native_client', 'src', 527 GypNinjaBuild(target_arch, gyp_py, gyp_file, targets, out_dir, False) 530 def GypNinjaBuild(arch, gyp_py_script, gyp_file, targets, 553 [sys.executable, gyp_py_script, gyp_file, gyp_depth] + \ [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
msvs.py | [all...] |