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

Side by Side Diff: gin/gin_unittests.isolate

Issue 2257893002: Delete all test isolate file. (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Rebasing against ToT just in case Created 4 years, 3 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 | « extensions/shell/app_shell_unittests.isolate ('k') | google_apis/gcm/gcm_unit_tests.isolate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'files': [
8 '<(PRODUCT_DIR)/gin_shell<(EXECUTABLE_SUFFIX)',
9 '<(PRODUCT_DIR)/gin_unittests<(EXECUTABLE_SUFFIX)',
10 'modules/module_registry_unittests.js',
11 'shell/hello_world.js',
12 'test/expect.js',
13 'test/file_unittests.js',
14 'test/gtest_unittests.js',
15 '../OWNERS',
16 ],
17 },
18 'conditions': [
19 ['OS=="linux" or OS=="mac" or OS=="win"', {
20 'variables': {
21 'files': [
22 '../testing/test_env.py',
23 ],
24 'command': [
25 '../testing/test_env.py',
26 '<(PRODUCT_DIR)/gin_unittests<(EXECUTABLE_SUFFIX)',
27 '--brave-new-test-launcher',
28 '--test-launcher-bot-mode',
29 '--asan=<(asan)',
30 '--msan=<(msan)',
31 '--tsan=<(tsan)',
32 ],
33 },
34 }],
35 ['OS=="mac" and asan==1 and fastbuild==0', {
36 'variables': {
37 'files': [
38 '<(PRODUCT_DIR)/gin_shell.dSYM/',
39 '<(PRODUCT_DIR)/gin_unittests.dSYM/',
40 ],
41 },
42 }],
43 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
44 'variables': {
45 'files': [
46 '<(PRODUCT_DIR)/gin_shell.exe.pdb',
47 '<(PRODUCT_DIR)/gin_unittests.exe.pdb',
48 ],
49 },
50 }],
51 ],
52 'includes': [
53 '../base/base.isolate',
54 '../gin/v8.isolate',
55 ],
56 }
OLDNEW
« no previous file with comments | « extensions/shell/app_shell_unittests.isolate ('k') | google_apis/gcm/gcm_unit_tests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698