diff options
author | kbr@chromium.org <kbr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-22 19:51:31 +0000 |
---|---|---|
committer | kbr@chromium.org <kbr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-22 19:51:31 +0000 |
commit | c29eda4a42e21a34e1fc1412a8a2fc87eb9a9425 (patch) | |
tree | 1627647e8761f969c5edca9e9df358ea85f9949f | |
parent | 91e273a10e5475afb305b58a2e2713afb3a5261e (diff) | |
download | chromium_src-c29eda4a42e21a34e1fc1412a8a2fc87eb9a9425.zip chromium_src-c29eda4a42e21a34e1fc1412a8a2fc87eb9a9425.tar.gz chromium_src-c29eda4a42e21a34e1fc1412a8a2fc87eb9a9425.tar.bz2 |
Added fastbuild config variable to isolate.gypi to let isolates test it.
Also added chrome_child.dll.pdb to telemetry_gpu_test isolate. This is
in order to get better stack traces for debugging Issue 383963.
BUG=385976,383963
NOTRY=true
Review URL: https://codereview.chromium.org/409113005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284760 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | build/isolate.gypi | 1 | ||||
-rw-r--r-- | chrome/telemetry_gpu_test.isolate | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/build/isolate.gypi b/build/isolate.gypi index 38d7aee..b0b2ca0 100644 --- a/build/isolate.gypi +++ b/build/isolate.gypi @@ -93,6 +93,7 @@ '--config-variable', 'CONFIGURATION_NAME=<(CONFIGURATION_NAME)', '--config-variable', 'chromeos=<(chromeos)', '--config-variable', 'component=<(component)', + '--config-variable', 'fastbuild=<(fastbuild)', # TODO(kbr): move this to chrome_tests.gypi:gles2_conform_tests_run # once support for user-defined config variables is added. '--config-variable', diff --git a/chrome/telemetry_gpu_test.isolate b/chrome/telemetry_gpu_test.isolate index 647a850..be360df 100644 --- a/chrome/telemetry_gpu_test.isolate +++ b/chrome/telemetry_gpu_test.isolate @@ -24,5 +24,13 @@ ], }, }], + # For debugging crbug.com/383963 + ['OS=="win" and (fastbuild==0 or fastbuild==1)', { + 'variables': { + 'isolate_dependency_tracked': [ + '<(PRODUCT_DIR)/chrome_child.dll.pdb', + ], + }, + }], ] } |