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

Side by Side Diff: ui/events/events_unittests.isolate

Issue 1287103004: Sync ui/events to chromium @ https://codereview.chromium.org/1210203002 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased Created 5 years, 4 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 | « ui/events/events_stub.cc ('k') | ui/events/gesture_detection/bitset_32.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 2015 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2014 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 ['use_x11==0', {
7 'variables': { 7 'variables': {
8 'command': [ 8 'command': [
9 '../testing/xvfb.py', 9 '../../testing/test_env.py',
10 '<(PRODUCT_DIR)', 10 '<(PRODUCT_DIR)/events_unittests<(EXECUTABLE_SUFFIX)',
11 '<(PRODUCT_DIR)/crypto_unittests<(EXECUTABLE_SUFFIX)',
12 '--brave-new-test-launcher', 11 '--brave-new-test-launcher',
13 '--test-launcher-bot-mode', 12 '--test-launcher-bot-mode',
14 '--asan=<(asan)', 13 '--asan=<(asan)',
15 '--lsan=<(lsan)', 14 '--msan=<(msan)',
15 '--tsan=<(tsan)',
16 ],
17 },
18 }],
19 ['use_x11==1', {
20 'variables': {
21 'command': [
22 '../../testing/xvfb.py',
23 '<(PRODUCT_DIR)',
24 '<(PRODUCT_DIR)/events_unittests<(EXECUTABLE_SUFFIX)',
25 '--brave-new-test-launcher',
26 '--test-launcher-bot-mode',
27 '--asan=<(asan)',
16 '--msan=<(msan)', 28 '--msan=<(msan)',
17 '--tsan=<(tsan)', 29 '--tsan=<(tsan)',
18 ], 30 ],
19 'files': [ 31 'files': [
20 '../testing/xvfb.py', 32 '../../testing/xvfb.py',
21 ],
22 },
23 }],
24 ['OS=="linux" and use_ozone==0', {
25 'variables': {
26 'files': [
27 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', 33 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
28 ], 34 ],
29 }, 35 },
30 }], 36 }],
31 ['OS=="linux" or OS=="mac" or OS=="win"', { 37 ['OS=="linux" or OS=="mac" or OS=="win"', {
32 'variables': { 38 'variables': {
33 'files': [ 39 'files': [
34 '../testing/test_env.py', 40 '../../testing/test_env.py',
35 '<(PRODUCT_DIR)/crypto_unittests<(EXECUTABLE_SUFFIX)', 41 '<(PRODUCT_DIR)/events_unittests<(EXECUTABLE_SUFFIX)',
36 ], 42 ],
37 'read_only': 1,
38 }, 43 },
39 }], 44 }],
40 ['OS=="mac" or OS=="win"', { 45 ['OS=="linux" and use_ozone==0', {
41 'variables': { 46 'variables': {
42 'command': [ 47 'files': [
43 '../testing/test_env.py', 48 '<(PRODUCT_DIR)/libosmesa.so',
44 '<(PRODUCT_DIR)/crypto_unittests<(EXECUTABLE_SUFFIX)', 49 ],
45 '--brave-new-test-launcher', 50 },
46 '--test-launcher-bot-mode', 51 }],
47 '--asan=<(asan)', 52 ['OS=="mac"', {
48 '--lsan=<(lsan)', 53 'variables': {
49 '--msan=<(msan)', 54 'files': [
50 '--tsan=<(tsan)', 55 '<(PRODUCT_DIR)/osmesa.so',
56 ],
57 },
58 }],
59 ['OS=="win"', {
60 'variables': {
61 'files': [
62 '<(PRODUCT_DIR)/osmesa.dll',
51 ], 63 ],
52 }, 64 },
53 }], 65 }],
54 ['OS=="mac" and asan==1 and fastbuild==0', { 66 ['OS=="mac" and asan==1 and fastbuild==0', {
55 'variables': { 67 'variables': {
56 'files': [ 68 'files': [
57 '<(PRODUCT_DIR)/crypto_unittests.dSYM/', 69 '<(PRODUCT_DIR)/events_unittests.dSYM/',
58 ], 70 '<(PRODUCT_DIR)/osmesa.so.dSYM/',
59 },
60 }],
61 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
62 'variables': {
63 'files': [
64 '<(PRODUCT_DIR)/crypto_unittests.exe.pdb',
65 ], 71 ],
66 }, 72 },
67 }], 73 }],
68 ], 74 ],
69 'includes': [ 75 'includes': [
70 '../base/base.isolate', 76 '../../base/base.isolate',
71 ], 77 ],
72 } 78 }
OLDNEW
« no previous file with comments | « ui/events/events_stub.cc ('k') | ui/events/gesture_detection/bitset_32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698