diff options
author | szym@chromium.org <szym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-10 03:17:38 +0000 |
---|---|---|
committer | szym@chromium.org <szym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-10 03:17:38 +0000 |
commit | 17dad9d57df1acd108e32169ffc9584988c9d9d6 (patch) | |
tree | e348e4863a393c09217d0b7e6fe17418122fc7a8 /chrome/telemetry.isolate | |
parent | 09d7588d83f381f6c8e03b86053e3fb4a872da0c (diff) | |
download | chromium_src-17dad9d57df1acd108e32169ffc9584988c9d9d6.zip chromium_src-17dad9d57df1acd108e32169ffc9584988c9d9d6.tar.gz chromium_src-17dad9d57df1acd108e32169ffc9584988c9d9d6.tar.bz2 |
[telemetry] Implement per-pixel algorithms in Bitmap as a C++ extension.
The extension provides fast bitmap operations with no external
dependencies. However, it is not available on all platforms.
BUG=323813
TEST=telemetry bitmap_unittest
TBR=bulach@chromium.org, tonyg@chromium.org, maruel@chromium.org
NOTRY=true
This is a third attempt. See bug for previous reviews of this CL.
Review URL: https://codereview.chromium.org/130153003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244067 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/telemetry.isolate')
-rw-r--r-- | chrome/telemetry.isolate | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/chrome/telemetry.isolate b/chrome/telemetry.isolate index 7a98160..c02ab0d1 100644 --- a/chrome/telemetry.isolate +++ b/chrome/telemetry.isolate @@ -36,5 +36,19 @@ ], }, }], + ['OS=="android" or OS=="linux" or OS=="mac"', { + 'variables': { + 'isolate_dependency_tracked': [ + '<(PRODUCT_DIR)/bitmaptools.so', + ], + }, + }], + ['OS=="win"', { + 'variables': { + 'isolate_dependency_tracked': [ + '<(PRODUCT_DIR)/bitmaptools.pyd', + ], + }, + }], ] } |