summaryrefslogtreecommitdiffstats
path: root/content/content_gl_tests.isolate
diff options
context:
space:
mode:
authorjam <jam@chromium.org>2014-09-22 09:29:02 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-22 16:29:42 +0000
commit1351139b75882cf05417aa615df21d641870be3c (patch)
tree639d916cda5a3fe5c3ca1af904a49406f126fd21 /content/content_gl_tests.isolate
parent241405ee4bf55feb3de2c6bffc6b892294563793 (diff)
downloadchromium_src-1351139b75882cf05417aa615df21d641870be3c.zip
chromium_src-1351139b75882cf05417aa615df21d641870be3c.tar.gz
chromium_src-1351139b75882cf05417aa615df21d641870be3c.tar.bz2
Move content_gl_tests.isolate to content.
I noticed this while looking through isolate files. Since the test target is in content, the isolate file should be alongside. Review URL: https://codereview.chromium.org/573073003 Cr-Commit-Position: refs/heads/master@{#295983}
Diffstat (limited to 'content/content_gl_tests.isolate')
-rw-r--r--content/content_gl_tests.isolate56
1 files changed, 56 insertions, 0 deletions
diff --git a/content/content_gl_tests.isolate b/content/content_gl_tests.isolate
new file mode 100644
index 0000000..18c6b82
--- /dev/null
+++ b/content/content_gl_tests.isolate
@@ -0,0 +1,56 @@
+# Copyright 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'conditions': [
+ ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
+ 'variables': {
+ 'command': [
+ '<(PRODUCT_DIR)/content_gl_tests<(EXECUTABLE_SUFFIX)',
+ ],
+ 'isolate_dependency_tracked': [
+ '<(PRODUCT_DIR)/content_gl_tests<(EXECUTABLE_SUFFIX)',
+ ],
+ },
+ }],
+ # TODO(kbr): these two dependencies seem to be necessary when
+ # running the component build to avoid "Failed to mmap datapack"
+ # errors. Should investigate further.
+ ['OS=="linux" or OS=="win"', {
+ 'variables': {
+ 'isolate_dependency_tracked': [
+ '<(PRODUCT_DIR)/content_resources.pak',
+ '<(PRODUCT_DIR)/ui_test.pak',
+ ],
+ },
+ }],
+ ['OS=="linux"', {
+ 'variables': {
+ 'isolate_dependency_tracked': [
+ '<(PRODUCT_DIR)/libffmpegsumo.so',
+ ],
+ },
+ }],
+ ['OS=="mac"', {
+ 'variables': {
+ 'isolate_dependency_tracked': [
+ '<(PRODUCT_DIR)/ffmpegsumo.so',
+ ],
+ },
+ }],
+ ['OS=="win"', {
+ 'variables': {
+ 'isolate_dependency_tracked': [
+ '<(PRODUCT_DIR)/d3dcompiler_46.dll',
+ '<(PRODUCT_DIR)/libEGL.dll',
+ '<(PRODUCT_DIR)/libGLESv2.dll',
+ '<(PRODUCT_DIR)/ffmpegsumo.dll',
+ '<(PRODUCT_DIR)/osmesa.dll',
+ ],
+ },
+ }],
+ ],
+ 'includes': [
+ '../third_party/icu/icu.isolate',
+ ],
+}