diff options
author | philipj <philipj@opera.com> | 2014-08-28 07:09:09 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-28 14:10:17 +0000 |
commit | 3f9d5bde7371956af8a9c70e52aa899847db6a5f (patch) | |
tree | d27ca9c5cb9c25c93a31f94fcdbfacc0ce6e9150 | |
parent | de9cf946851e8f9ed819f507478566b929da8d3e (diff) | |
download | chromium_src-3f9d5bde7371956af8a9c70e52aa899847db6a5f.zip chromium_src-3f9d5bde7371956af8a9c70e52aa899847db6a5f.tar.gz chromium_src-3f9d5bde7371956af8a9c70e52aa899847db6a5f.tar.bz2 |
Update some paths from components/breakpad/ to components/crash/
It was moved in https://crrev.com/55b8563
Found by git grep 'components.*breakpad'
BUG=406410
R=rsesek@chromium.org
TBR=jochen@chromium.org
Review URL: https://codereview.chromium.org/511223002
Cr-Commit-Position: refs/heads/master@{#292376}
-rw-r--r-- | PRESUBMIT.py | 2 | ||||
-rwxr-xr-x | PRESUBMIT_test.py | 2 | ||||
-rwxr-xr-x | content/shell/tools/breakpad_integration_test.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 8afda24..a3b4ec7 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -168,7 +168,7 @@ _BANNED_CPP_FUNCTIONS = ( True, ( r"^chrome[\\\/]browser[\\\/]chromeos[\\\/]boot_times_loader\.cc$", - r"^components[\\\/]breakpad[\\\/]app[\\\/]breakpad_mac\.mm$", + r"^components[\\\/]crash[\\\/]app[\\\/]breakpad_mac\.mm$", r"^content[\\\/]shell[\\\/]browser[\\\/]shell_browser_main\.cc$", r"^content[\\\/]shell[\\\/]browser[\\\/]shell_message_filter\.cc$", r"^mojo[\\\/]system[\\\/]raw_shared_buffer_posix\.cc$", diff --git a/PRESUBMIT_test.py b/PRESUBMIT_test.py index 6a18b12..dd67eb1 100755 --- a/PRESUBMIT_test.py +++ b/PRESUBMIT_test.py @@ -421,7 +421,7 @@ class CheckAddedDepsHaveTetsApprovalsTest(unittest.TestCase): '"+chrome/plugin/chrome_content_plugin_client.h",', '"+chrome/utility/chrome_content_utility_client.h",', '"+chromeos/chromeos_paths.h",', - '"+components/breakpad",', + '"+components/crash",', '"+components/nacl/common",', '"+content/public/browser/render_process_host.h",', '"+jni/fooblat.h",', diff --git a/content/shell/tools/breakpad_integration_test.py b/content/shell/tools/breakpad_integration_test.py index c9742fe..cfb0312 100755 --- a/content/shell/tools/breakpad_integration_test.py +++ b/content/shell/tools/breakpad_integration_test.py @@ -58,7 +58,7 @@ def main(): print "# Generate symbols." breakpad_tools_dir = os.path.join( os.path.dirname(__file__), '..', '..', '..', - 'components', 'breakpad', 'tools') + 'components', 'crash', 'tools') generate_symbols = os.path.join( breakpad_tools_dir, 'generate_breakpad_symbols.py') symbols_dir = os.path.join(crash_dir, 'symbols') |