/external/chromium_org/native_client_sdk/src/build_tools/ |
naclsdk | 9 readonly SDK_TOOLS="${SCRIPT_DIR_ABS}/sdk_tools" 13 echo "Updating sdk_tools" 14 rm -rf "${SDK_TOOLS}" 15 mv "${SDK_TOOLS_UPDATE}" "${SDK_TOOLS}" 18 export PYTHONPATH="${SDK_TOOLS}" 19 python "${SDK_TOOLS}/sdk_update.py" "$@"
|
naclsdk.bat | 10 set SDK_TOOLS=%SCRIPT_DIR%sdk_tools
15 echo Updating sdk_tools
16 if exist "%SDK_TOOLS%" (
17 rmdir /q/s "%SDK_TOOLS%"
19 move "%SDK_TOOLS_UPDATE%" "%SDK_TOOLS%"
24 python "%SDK_TOOLS%\sdk_update.py" %*
|
build_updater.py | 6 """Build script to generate a new sdk_tools bundle. 41 ('build_tools/sdk_tools/cacerts.txt', 'nacl_sdk/sdk_tools/cacerts.txt'), 42 ('build_tools/sdk_tools/*.py', 'nacl_sdk/sdk_tools/'), 43 ('build_tools/sdk_tools/command/*.py', 'nacl_sdk/sdk_tools/command/'), 44 ('build_tools/sdk_tools/third_party/*.py', 'nacl_sdk/sdk_tools/third_party/'), 45 ('build_tools/sdk_tools/third_party/fancy_urllib/*.py' [all...] |
update_sdktools.py | 7 sdk_tools bundle to use. 12 new sdk_tools bundle. A file on the developer's hard drive is modified, and 13 must be checked in for the new sdk_tools bundle to be used. 38 return HTTPS_BUCKET_PATH + 'trunk.%d/sdk_tools.tgz' % revision 53 sdktools_url = url + 'sdk_tools.tgz' 84 sdk_tools_bundle = GetBundleByName(manifest['bundles'], 'sdk_tools')
|
build_sdk.py | 792 # Only push up sdk_tools.tgz and nacl_sdk.zip on the linux buildbot. 801 buildbot_common.Archive('sdk_tools.tgz', bucket_path, OUT_DIR, [all...] |
/external/chromium_org/native_client_sdk/src/build_tools/json/ |
naclsdk_manifest0.json | 11 "url": "https://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/trunk.228691/sdk_tools.tgz" 15 "name": "sdk_tools",
|
naclsdk_manifest.json | 4 "name": "sdk_tools", 11 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/1.15/sdk_tools.tgz", 19 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/1.15/sdk_tools.tgz", 27 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/1.15/sdk_tools.tgz",
|
naclsdk_manifest2.json | 11 "url": "https://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/trunk.228691/sdk_tools.tgz" 15 "name": "sdk_tools",
|
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/ |
__init__.py | 5 """sdk_tools Package"""
|
sdk_update.py | 9 sdk_tools (the bundle containing the updater scripts) whenever this script is 12 When the sdk_tools bundle has been updated to the most recent version, this 29 SDK_TOOLS_DIR = os.path.join(SDK_ROOT_DIR, 'sdk_tools') 45 """Run sdk_update_main to update sdk_tools bundle. Return True if it is 53 True if the sdk_tools bundle was updated. 59 return stdout.find('Updating bundle sdk_tools to version') != -1 61 # Updating sdk_tools could fail for any number of reasons. Regardless, it 67 """Rename sdk_tools_update to sdk_tools.""" 74 temp_sdktools = os.path.join(tempdir, 'sdk_tools') 91 # Not much to do here. sdk_tools won't exist, but sdk_tools_updat [all...] |
sdk_update_main.py | 346 """update the sdk_tools bundle""" 359 command.update.SDK_TOOLS,
|
/external/chromium_org/native_client_sdk/src/build_tools/tests/ |
sdktools_test.py | 44 # least as large as the version in the sdk_tools bundle. If not, update 50 self.sdk_tools_bundle = self.manifest.GetBundle('sdk_tools') 54 """Get the sdk_tools bundle revision. 56 build_updater uses to specify the current revision of sdk_tools.""" 62 return manifest.GetBundle('sdk_tools').revision 101 """Build a new sdk_tools bundle. 112 new_sdk_tools_tgz = os.path.join(self.basedir, rel_path, 'sdk_tools.tgz') 118 archive.url = self.server.GetURL('%s/sdk_tools.tgz' % (rel_path,)) 171 sdktools_tgz_path = os.path.join(self.basedir, 'sdk_tools.tgz') 204 """Test that attempting to manually update sdk_tools is ignored [all...] |
sdktools_config_test.py | 14 import sdk_tools.config as config namespace
|
sdktools_commands_test.py | 73 output = self._Run(['info', 'sdk_tools']) 75 bundle = self.manifest.GetBundle('sdk_tools') 119 self.assertTrue(re.search('I.*?sdk_tools.*?stable', output, re.MULTILINE)) 121 # sdk_tools bundle needs to be updated), so let's be explicit. 132 self.assertTrue('sdk_tools' in output) 254 # Should not try to update sdk_tools (even though it is recommended)
|
/external/chromium_org/native_client_sdk/ |
PRESUBMIT.py | 23 r'src[\\\/]build_tools[\\\/]sdk_tools[\\\/]third_party[\\\/].*',
|
/external/chromium_org/native_client_sdk/src/doc/sdk/ |
download.rst | 58 * ``sdk_tools`` --- the back end of the update utility, also known as the 59 "sdk_tools" bundle 82 I sdk_tools (stable) 93 have already installed the latest revision of the sdk_tools bundle (it was 122 Note that you never need update the ``sdk_tools`` bundle, it is 151 I sdk_tools (stable) 184 I sdk_tools (stable)
|
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/ |
update.py | 33 SDK_TOOLS = 'sdk_tools' 230 if SDK_TOOLS in requested_bundles: 231 logging.warn('Updating sdk_tools happens automatically. ' 233 requested_bundles.discard(SDK_TOOLS) 312 if bundle.recommended == 'yes' and bundle.name != SDK_TOOLS:
|
/external/chromium_org/tools/checkperms/ |
checkperms.py | 176 'native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/'
|
/external/chromium_org/chrome/test/functional/ |
nacl_sdk.py | 96 'sdk_tools/',
|