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

Side by Side Diff: media/midi/midi_unittests.isolate

Issue 1065743003: Reland: Web MIDI: split build rules for media/midi (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed patch set Created 5 years, 7 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 | « media/midi/midi_scheduler.h ('k') | media/midi/usb_midi_device_android.cc » ('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 (c) 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'includes': [
6 '../../base/base.isolate',
7 ],
5 'conditions': [ 8 'conditions': [
6 ['use_x11==0', { 9 ['use_x11==0', {
7 'variables': { 10 'variables': {
8 'command': [ 11 'command': [
9 '../../testing/test_env.py', 12 '../../testing/test_env.py',
10 '<(PRODUCT_DIR)/ui_touch_selection_unittests<(EXECUTABLE_SUFFIX)', 13 '<(PRODUCT_DIR)/midi_unittests<(EXECUTABLE_SUFFIX)',
11 '--brave-new-test-launcher', 14 '--brave-new-test-launcher',
12 '--test-launcher-bot-mode', 15 '--test-launcher-bot-mode',
13 '--asan=<(asan)', 16 '--asan=<(asan)',
14 '--msan=<(msan)', 17 '--msan=<(msan)',
15 '--tsan=<(tsan)', 18 '--tsan=<(tsan)',
16 ], 19 ],
17 }, 20 },
18 }], 21 }],
19 ['use_x11==1', { 22 ['use_x11==1', {
20 'variables': { 23 'variables': {
21 'command': [ 24 'command': [
22 '../../testing/xvfb.py', 25 '../../testing/xvfb.py',
23 '<(PRODUCT_DIR)', 26 '<(PRODUCT_DIR)',
24 '<(PRODUCT_DIR)/ui_touch_selection_unittests<(EXECUTABLE_SUFFIX)', 27 '<(PRODUCT_DIR)/midi_unittests',
25 '--brave-new-test-launcher', 28 '--brave-new-test-launcher',
26 '--test-launcher-bot-mode', 29 '--test-launcher-bot-mode',
27 '--asan=<(asan)', 30 '--asan=<(asan)',
28 '--msan=<(msan)', 31 '--msan=<(msan)',
29 '--tsan=<(tsan)', 32 '--tsan=<(tsan)',
30 ], 33 ],
31 'files': [ 34 'files': [
32 '../../testing/xvfb.py', 35 '../../testing/xvfb.py',
33 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', 36 '<(PRODUCT_DIR)/xdisplaycheck',
34 ], 37 ],
35 }, 38 },
36 }], 39 }],
37 ['OS=="linux" or OS=="mac" or OS=="win"', { 40 ['OS=="linux" or OS=="mac" or OS=="win"', {
38 'variables': { 41 'variables': {
39 'files': [ 42 'files': [
40 '../../testing/test_env.py', 43 '../../testing/test_env.py',
41 '<(PRODUCT_DIR)/ui_touch_selection_unittests<(EXECUTABLE_SUFFIX)', 44 '<(PRODUCT_DIR)/midi_unittests<(EXECUTABLE_SUFFIX)',
42 ],
43 },
44 }],
45 ['OS=="linux"', {
46 'variables': {
47 'files': [
48 '<(PRODUCT_DIR)/libosmesa.so',
49 ], 45 ],
50 }, 46 },
51 }], 47 }],
52 ['OS=="mac" and asan==1 and fastbuild==0', { 48 ['OS=="mac" and asan==1 and fastbuild==0', {
53 'variables': { 49 'variables': {
54 'files': [ 50 'files': [
55 '<(PRODUCT_DIR)/ui_touch_selection_unittests.dSYM/', 51 '<(PRODUCT_DIR)/midi_unittests.dSYM/',
52 ],
53 },
54 }],
55 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
56 'variables': {
57 'files': [
58 '<(PRODUCT_DIR)/midi_unittests.exe.pdb',
56 ], 59 ],
57 }, 60 },
58 }], 61 }],
59 ], 62 ],
60 'includes': [
61 '../../base/base.isolate',
62 ],
63 } 63 }
OLDNEW
« no previous file with comments | « media/midi/midi_scheduler.h ('k') | media/midi/usb_midi_device_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698