Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Unified Diff: infra/bots/recipe_modules/skia/resources/run_binary_size_analysis.py

Issue 2187603005: Fix Perf data upload (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Remove uses of common.skia Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: infra/bots/recipe_modules/skia/resources/run_binary_size_analysis.py
diff --git a/infra/bots/recipe_modules/skia/resources/run_binary_size_analysis.py b/infra/bots/recipe_modules/skia/resources/run_binary_size_analysis.py
index f8c3c830ad7e42ede96647b38d6ff8567a47b9d1..5cb24d967a78ca6a1d73f712f90de3bc923a48af 100755
--- a/infra/bots/recipe_modules/skia/resources/run_binary_size_analysis.py
+++ b/infra/bots/recipe_modules/skia/resources/run_binary_size_analysis.py
@@ -95,9 +95,6 @@ import elf_symbolizer
from recipe_engine.types import freeze
-# Skia addition
-from common.skia import global_constants
-
# Node dictionary keys. These are output in json read by the webapp so
# keep them short to save file size.
# Note: If these change, the webapp must also change.
@@ -338,7 +335,7 @@ def DumpCompactTree(symbols, symbol_path_origin_dir, ha, ts, issue, gsutil):
# Use separators without whitespace to get a smaller file.
json.dump(json_data, out, separators=(',', ':'))
- GS_PREFIX = 'gs://' + global_constants.GS_GM_BUCKET + '/'
+ GS_PREFIX = 'gs://chromium-skia-gm/'
# Writes to Google Storage for visualization.
subprocess.check_call(GetGsCopyCommandList(
gsutil, tmpfile, GS_PREFIX + 'size/' + ha + '.json'))

Powered by Google App Engine
This is Rietveld 408576698