diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-26 20:59:55 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-26 20:59:55 +0000 |
commit | 3222ec730a295ed4907228c87f6ae9942eae8ff2 (patch) | |
tree | 4bfb4ca29b617894cf84a819fd6e5f056532b03e /chrome/chrome_renderer.gypi | |
parent | 432579079eb53b9aa3d1ae4c0d85797de7203612 (diff) | |
download | chromium_src-3222ec730a295ed4907228c87f6ae9942eae8ff2.zip chromium_src-3222ec730a295ed4907228c87f6ae9942eae8ff2.tar.gz chromium_src-3222ec730a295ed4907228c87f6ae9942eae8ff2.tar.bz2 |
Replace only use of WebRegularExpression with RE2
WebKit::WebRegularExpression is a wrapper for WebCore::RegularExpression which
is in turn a wrapper for YARR, a regular expression engine in JavaScriptCore.
We added a dependency on WebKit::WebRegularExpression in r71498 to match
style attributes that match the width/height of blocked plugins so when plugins
are removed from a page transparent placeholders that eat events aren't left
behind.
As it turns out, this is the only user of WebCore::RegularExpression in all of
chromium that is reachable at runtime (there's some code in WebCore::Frame that
is compiled in but not called by us that uses WebCore::RegularExpression).
R=darin@chromium.org
Review URL: https://chromiumcodereview.appspot.com/12741011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@190763 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_renderer.gypi')
-rw-r--r-- | chrome/chrome_renderer.gypi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/chrome_renderer.gypi b/chrome/chrome_renderer.gypi index 1f70691..56136df 100644 --- a/chrome/chrome_renderer.gypi +++ b/chrome/chrome_renderer.gypi @@ -22,6 +22,7 @@ '../third_party/icu/icu.gyp:icui18n', '../third_party/icu/icu.gyp:icuuc', '../third_party/npapi/npapi.gyp:npapi', + '../third_party/re2/re2.gyp:re2', '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', '../ui/surface/surface.gyp:surface', |