summaryrefslogtreecommitdiffstats
path: root/PRESUBMIT.py
diff options
context:
space:
mode:
authorszym@chromium.org <szym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-18 00:51:52 +0000
committerszym@chromium.org <szym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-18 00:51:52 +0000
commit1d7d185792dce09020a174a9e258ad206005c29b (patch)
treeceb29f0868fe2bf0e82589fe19d1d82dd80120c9 /PRESUBMIT.py
parentd3ee6a97607e3b27b28e32eb9ec16d92241a3600 (diff)
downloadchromium_src-1d7d185792dce09020a174a9e258ad206005c29b.zip
chromium_src-1d7d185792dce09020a174a9e258ad206005c29b.tar.gz
chromium_src-1d7d185792dce09020a174a9e258ad206005c29b.tar.bz2
[telemetry] bitmaptools as a standalone executable
The C++ binary implements simple per-pixel algorithms for SpeedIndex computation. This allows us to achieve near real-time processing without bringing external dependencies. The bitmaptools binary needs to be built before it can be used. The overhead of spawning a child process for each frame is about 3ms. BUG=323813 TEST=telemetry bitmap_unittest Review URL: https://codereview.chromium.org/136793022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245684 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r--PRESUBMIT.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 9407609..8f024e9 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -901,6 +901,8 @@ def _CheckSpamLogging(input_api, output_api):
r"^remoting[\\\/]base[\\\/]logging\.h$",
r"^remoting[\\\/]host[\\\/].*",
r"^sandbox[\\\/]linux[\\\/].*",
+ r"^tools[\\\/]telemetry[\\\/]telemetry[\\\/]core[\\\/]"
+ r"bitmaptools.cc$",
r"^ui[\\\/]aura[\\\/]bench[\\\/]bench_main\.cc$",))
source_file_filter = lambda x: input_api.FilterSourceFile(
x, white_list=(file_inclusion_pattern,), black_list=black_list)