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

Unified Diff: scripts/slave/recipe_modules/archive/perf_test_files.py

Issue 2128613005: Archive Linux perf builds for manual bisect (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Archive Linux perf builds for manual bisect 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: scripts/slave/recipe_modules/archive/perf_test_files.py
diff --git a/scripts/slave/recipe_modules/archive/perf_test_files.py b/scripts/slave/recipe_modules/archive/perf_test_files.py
new file mode 100644
index 0000000000000000000000000000000000000000..ad2bed5456b9e78b76e4a638be48d850be250719
--- /dev/null
+++ b/scripts/slave/recipe_modules/archive/perf_test_files.py
@@ -0,0 +1,33 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
RobertoCN 2016/08/03 20:49:49 nit: 2016
miimnk 2016/08/03 21:37:11 Fixed
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Declares required files to run bisect on chrome Linux builds in perf.
+Binary files that should be stripped to reduce zip file size are declared.
+"""
+
+CHROME_REQUIRED_FILES = [
+ 'locales',
+ 'default_apps',
+ 'PepperFlash',
+ 'chrome',
+ 'resources.pak',
+ 'icudtl.dat',
+ 'libwidevinecdm.so',
+ 'nacl_irt_x86_64.nexe',
+ 'nacl_helper',
+ 'chrome_200_percent.pak',
+ 'snapshot_blob.bin',
+ 'chrome_100_percent.pak',
+ 'natives_blob.bin',
+ 'xdg-mime',
+ 'nacl_helper_bootstrap',
+ 'xdg-settings',
+ 'product_logo_48.png'
+]
+
+
+CHROME_STRIP_LIST = [
+ 'chrome',
+ 'nacl_helper'
+]

Powered by Google App Engine
This is Rietveld 408576698