diff options
author | szym@chromium.org <szym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-22 17:49:55 +0000 |
---|---|---|
committer | szym@chromium.org <szym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-22 17:49:55 +0000 |
commit | 90f69904f78bd1584d8f36a140cb2f4a728cc39d (patch) | |
tree | 8e74b331db5d71dfcce84e921a66e9575cdbd0e6 /PRESUBMIT.py | |
parent | 62f989801281c55025514a69b606b95e6ea48aa0 (diff) | |
download | chromium_src-90f69904f78bd1584d8f36a140cb2f4a728cc39d.zip chromium_src-90f69904f78bd1584d8f36a140cb2f4a728cc39d.tar.gz chromium_src-90f69904f78bd1584d8f36a140cb2f4a728cc39d.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
Original review: https://codereview.chromium.org/136793022
TBR=tonyg,maruel
Review URL: https://codereview.chromium.org/131563009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@246361 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r-- | PRESUBMIT.py | 2 |
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) |