Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(450)

Side by Side Diff: chrome/interactive_ui_tests.isolate

Issue 670653005: Fix Flash fullscreen focus regressions, and add interactive_ui_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove consts in ObjC code. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | content/browser/renderer_host/render_widget_host_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 { 4 {
5 'conditions': [ 5 'conditions': [
6 ['OS=="linux"', { 6 ['OS=="linux"', {
7 'variables': { 7 'variables': {
8 'command': [ 8 'command': [
9 '../testing/xvfb.py', 9 '../testing/xvfb.py',
10 '<(PRODUCT_DIR)', 10 '<(PRODUCT_DIR)',
11 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)', 11 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)',
12 '--test-launcher-bot-mode', 12 '--test-launcher-bot-mode',
13 '--asan=<(asan)', 13 '--asan=<(asan)',
14 '--lsan=<(lsan)', 14 '--lsan=<(lsan)',
15 ], 15 ],
16 'files': [ 16 'files': [
17 '../testing/xvfb.py', 17 '../testing/xvfb.py',
18 '<(PRODUCT_DIR)/libffmpegsumo.so', 18 '<(PRODUCT_DIR)/libffmpegsumo.so',
19 '<(PRODUCT_DIR)/libosmesa.so', 19 '<(PRODUCT_DIR)/libosmesa.so',
20 '<(PRODUCT_DIR)/libppapi_tests.so',
20 '<(PRODUCT_DIR)/pyproto/', 21 '<(PRODUCT_DIR)/pyproto/',
21 ], 22 ],
22 }, 23 },
23 }], 24 }],
24 ['OS=="linux" and use_ozone==0', { 25 ['OS=="linux" and use_ozone==0', {
25 'variables': { 26 'variables': {
26 'files': [ 27 'files': [
27 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', 28 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
28 ], 29 ],
29 }, 30 },
30 }], 31 }],
31 ['OS=="linux" or OS=="mac" or OS=="win"', { 32 ['OS=="linux" or OS=="mac" or OS=="win"', {
32 'variables': { 33 'variables': {
33 'files': [ 34 'files': [
34 '../net/data/ssl/certificates/', 35 '../net/data/ssl/certificates/',
35 '../net/tools/testserver/', 36 '../net/tools/testserver/',
37 '../ppapi/tests/test_case.html',
38 '../ppapi/tests/test_page.css',
36 '../testing/test_env.py', 39 '../testing/test_env.py',
37 '../third_party/pyftpdlib/', 40 '../third_party/pyftpdlib/',
38 '../third_party/pywebsocket/', 41 '../third_party/pywebsocket/',
39 '../third_party/tlslite/', 42 '../third_party/tlslite/',
40 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)', 43 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)',
41 '<(PRODUCT_DIR)/resources.pak', 44 '<(PRODUCT_DIR)/resources.pak',
42 'test/data/', 45 'test/data/',
43 ], 46 ],
44 'read_only': 1, 47 'read_only': 1,
45 }, 48 },
46 }], 49 }],
47 ['OS=="linux" or OS=="win"', { 50 ['OS=="linux" or OS=="win"', {
48 'variables': { 51 'variables': {
49 'files': [ 52 'files': [
50 '<(PRODUCT_DIR)/chrome_100_percent.pak', 53 '<(PRODUCT_DIR)/chrome_100_percent.pak',
51 '<(PRODUCT_DIR)/locales/en-US.pak', 54 '<(PRODUCT_DIR)/locales/en-US.pak',
52 '<(PRODUCT_DIR)/locales/fr.pak', 55 '<(PRODUCT_DIR)/locales/fr.pak',
53 '<(PRODUCT_DIR)/ui_test.pak', 56 '<(PRODUCT_DIR)/ui_test.pak',
54 ], 57 ],
55 }, 58 },
56 }], 59 }],
57 ['OS=="mac"', { 60 ['OS=="mac"', {
58 'variables': { 61 'variables': {
59 'files': [ 62 'files': [
60 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', 63 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
61 '<(PRODUCT_DIR)/<(mac_product_name).app/', 64 '<(PRODUCT_DIR)/<(mac_product_name).app/',
62 '<(PRODUCT_DIR)/ffmpegsumo.so', 65 '<(PRODUCT_DIR)/ffmpegsumo.so',
63 '<(PRODUCT_DIR)/osmesa.so', 66 '<(PRODUCT_DIR)/osmesa.so',
67 '<(PRODUCT_DIR)/ppapi_tests.plugin/Contents/MacOS/ppapi_tests',
64 ], 68 ],
65 }, 69 },
66 }], 70 }],
67 ['OS=="mac" or OS=="win"', { 71 ['OS=="mac" or OS=="win"', {
68 'variables': { 72 'variables': {
69 'command': [ 73 'command': [
70 '../testing/test_env.py', 74 '../testing/test_env.py',
71 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)', 75 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)',
72 '--test-launcher-bot-mode', 76 '--test-launcher-bot-mode',
73 '--asan=<(asan)', 77 '--asan=<(asan)',
74 '--lsan=<(lsan)', 78 '--lsan=<(lsan)',
75 ], 79 ],
76 }, 80 },
77 }], 81 }],
78 ['OS=="win"', { 82 ['OS=="win"', {
79 'variables': { 83 'variables': {
80 'files': [ 84 'files': [
81 '<(PRODUCT_DIR)/chrome_elf.dll', 85 '<(PRODUCT_DIR)/chrome_elf.dll',
82 '<(PRODUCT_DIR)/d3dcompiler_46.dll', 86 '<(PRODUCT_DIR)/d3dcompiler_46.dll',
83 '<(PRODUCT_DIR)/ffmpegsumo.dll', 87 '<(PRODUCT_DIR)/ffmpegsumo.dll',
84 '<(PRODUCT_DIR)/libEGL.dll', 88 '<(PRODUCT_DIR)/libEGL.dll',
85 '<(PRODUCT_DIR)/libGLESv2.dll', 89 '<(PRODUCT_DIR)/libGLESv2.dll',
86 '<(PRODUCT_DIR)/osmesa.dll', 90 '<(PRODUCT_DIR)/osmesa.dll',
87 '<(PRODUCT_DIR)/plugins/npapi_test_plugin.dll', 91 '<(PRODUCT_DIR)/plugins/npapi_test_plugin.dll',
92 '<(PRODUCT_DIR)/ppapi_tests.dll',
88 ], 93 ],
89 }, 94 },
90 }], 95 }],
91 ['OS=="win" and target_arch=="ia32"', { 96 ['OS=="win" and target_arch=="ia32"', {
92 'variables': { 97 'variables': {
93 'files': [ 98 'files': [
94 '<(PRODUCT_DIR)/wow_helper.exe', 99 '<(PRODUCT_DIR)/wow_helper.exe',
95 ], 100 ],
96 }, 101 },
97 }], 102 }],
(...skipping 14 matching lines...) Expand all
112 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', 117 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
113 '<(PRODUCT_DIR)/resources/chromeos/', 118 '<(PRODUCT_DIR)/resources/chromeos/',
114 ], 119 ],
115 }, 120 },
116 }], 121 }],
117 ], 122 ],
118 'includes': [ 123 'includes': [
119 '../base/base.isolate', 124 '../base/base.isolate',
120 ], 125 ],
121 } 126 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | content/browser/renderer_host/render_widget_host_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698