Searched refs:manifest_path (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/android_webview/buildbot/
H A Dgenerate_local_manifest.py17 def createLocalManifest(manifest_path, local_manifest_path, path_to_exclude,
19 manifest_tree = ET.parse(manifest_path)
80 manifest_path = os.path.join(android_build_top, '.repo/manifests',
94 print 'Path to manifest file: %s' % manifest_path
95 createLocalManifest(manifest_path, local_manifest_path, path_to_exclude,
/external/chromium_org/chrome/browser/extensions/
H A Dextension_icon_manager_unittest.cc108 base::FilePath manifest_path = test_dir.AppendASCII( local
111 JSONFileValueSerializer serializer(manifest_path);
118 manifest_path.DirName(), Manifest::INVALID_LOCATION, *manifest.get(),
150 base::FilePath manifest_path = test_dir.AppendASCII( local
153 JSONFileValueSerializer serializer(manifest_path);
160 manifest_path.DirName(), Manifest::COMPONENT, *manifest.get(),
H A Dconvert_web_app.cc122 base::FilePath manifest_path = temp_dir.path().Append(kManifestFilename); local
123 JSONFileValueSerializer serializer(manifest_path);
H A Dconvert_user_script.cc159 base::FilePath manifest_path = temp_dir.path().Append(kManifestFilename); local
160 JSONFileValueSerializer serializer(manifest_path);
H A Dapp_background_page_apitest.cc57 base::FilePath manifest_path = app_dir_.path().AppendASCII("manifest.json"); local
58 int bytes_written = base::WriteFile(manifest_path,
H A Dextension_ui_unittest.cc106 base::FilePath manifest_path = extension_path.Append(kManifestFilename); local
108 manifest_path, &error));
H A Dsandboxed_unpacker.cc633 base::FilePath manifest_path = local
636 if (base::WriteFile(manifest_path, manifest_json.data(), size) != size) {
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dnative_messaging_test_util.cc40 base::FilePath manifest_path = target_dir.AppendASCII(host_name + ".json"); local
41 JSONFileValueSerializer serializer(manifest_path);
52 manifest_key.WriteValue(NULL, manifest_path.value().c_str()));
H A Dnative_process_launcher_win.cc80 base::FilePath manifest_path(path_str);
81 if (!manifest_path.IsAbsolute()) {
86 return manifest_path;
H A Dnative_process_launcher.cc127 base::FilePath manifest_path = local
130 if (manifest_path.empty()) {
138 NativeMessagingHostManifest::Load(manifest_path, &error_message);
166 host_path = manifest_path.DirName().Append(host_path);
/external/chromium_org/extensions/common/
H A Dmanifest_test.cc21 // |manifest_path| is an absolute path to a manifest file.
22 base::DictionaryValue* LoadManifestFile(const base::FilePath& manifest_path, argument
24 base::FilePath extension_path = manifest_path.DirName();
26 EXPECT_TRUE(base::PathExists(manifest_path)) <<
27 "Couldn't find " << manifest_path.value();
29 JSONFileValueSerializer serializer(manifest_path);
38 manifest_path.value().find(FILE_PATH_LITERAL("localized")) !=
84 base::FilePath manifest_path = test_data_dir.AppendASCII(name_);
85 manifest_ = LoadManifestFile(manifest_path, error);
98 base::FilePath manifest_path local
[all...]
H A Dfile_util.cc165 base::FilePath manifest_path = extension_path.Append(manifest_filename); local
166 if (!base::PathExists(manifest_path)) {
171 JSONFileValueSerializer serializer(manifest_path);
H A Dmanifest_test.h50 base::DictionaryValue* GetManifest(base::FilePath manifest_path,
/external/chromium_org/chrome/browser/component_updater/pnacl/
H A Dpnacl_component_installer.cc126 base::DictionaryValue* ReadJSONManifest(const base::FilePath& manifest_path) { argument
127 JSONFileValueSerializer serializer(manifest_path);
139 base::FilePath manifest_path = local
141 if (!base::PathExists(manifest_path))
143 return ReadJSONManifest(manifest_path);
149 base::FilePath manifest_path = local
151 if (!base::PathExists(manifest_path))
153 return ReadJSONManifest(manifest_path);
/external/chromium_org/mojo/tools/package_manager/
H A Dpackage_manager_application.cc93 base::FilePath manifest_path = unpacker.dir().Append(kManifestFileName); local
96 if (!manifest.ParseFromFile(manifest_path, &err_msg)) {
/external/chromium_org/build/android/gyp/
H A Dlint.py22 def _RunLint(lint_path, config_path, processed_config_path, manifest_path,
110 cmd.append(_RelativizePath(os.path.join(manifest_path, os.pardir)))
175 'processed_config_path', 'manifest_path',
193 options.manifest_path, options.result_path,
H A Djavac.py106 def CreateManifest(manifest_path, classpath, main_class=None):
113 manifest_path: The path to the manifest file that should be created.
136 with open(manifest_path, 'w') as f:
/external/chromium_org/components/nacl/browser/
H A Dnacl_host_message_filter.cc194 base::FilePath manifest_path; local
202 &manifest_path);
203 host->Launch(this, reply_msg, manifest_path);
H A Dnacl_process_host.h95 const base::FilePath& manifest_path);
/external/chromium_org/chrome/utility/extensions/
H A Dunpacker.cc116 base::FilePath manifest_path = local
118 if (!base::PathExists(manifest_path)) {
123 JSONFileValueSerializer serializer(manifest_path);
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dextension_unittest.py111 manifest_path = os.path.join(src_extension_dir, 'manifest.json')
114 shutil.copy(manifest_path, d)
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dwin_tool.py223 manifest_path, resource_path, resource_name = args
227 os.path.abspath(manifest_path).replace('\\', '/')))
/external/chromium_org/chrome/common/extensions/api/
H A Dextension_api_unittest.cc794 base::FilePath manifest_path; local
795 PathService::Get(chrome::DIR_TEST_DATA, &manifest_path);
796 manifest_path = manifest_path.AppendASCII("extensions")
801 ASSERT_TRUE(base::ReadFileToString(manifest_path, &manifest_str))
802 << "Failed to load: " << manifest_path.value();
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/
H A Dhttp_fs.cc382 Path manifest_path(manifest_name);
386 int error = Open(manifest_path, O_RDONLY, &manifest_node);
/external/chromium_org/chrome/browser/chromeos/
H A Dcustomization_document.h62 virtual bool LoadManifestFromFile(const base::FilePath& manifest_path);

Completed in 1438 milliseconds

12