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

Side by Side Diff: base/base_unittests.isolate

Issue 17267004: [Android] Enable using isolate files to get a list of data dependencies to push to the device. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove the apk since crbug.com/252785 is fixed Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
7 'variables': {
8 'isolate_dependency_untracked': [
9 'data/',
10 'test/data/',
11 ],
12 },
13 }],
6 ['OS=="linux"', { 14 ['OS=="linux"', {
7 'variables': { 15 'variables': {
8 'command': [ 16 'command': [
9 '../testing/xvfb.py', 17 '../testing/xvfb.py',
10 '<(PRODUCT_DIR)', 18 '<(PRODUCT_DIR)',
11 '../tools/swarm_client/run_test_cases.py', 19 '../tools/swarm_client/run_test_cases.py',
12 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', 20 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
13 ], 21 ],
14 'isolate_dependency_tracked': [ 22 'isolate_dependency_tracked': [
15 '../testing/xvfb.py', 23 '../testing/xvfb.py',
16 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', 24 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
17 ], 25 ],
18 }, 26 },
19 }], 27 }],
20 ['OS=="linux" or OS=="mac" or OS=="win"', { 28 ['OS=="linux" or OS=="mac" or OS=="win"', {
21 'variables': { 29 'variables': {
22 'isolate_dependency_tracked': [ 30 'isolate_dependency_tracked': [
23 '../testing/test_env.py', 31 '../testing/test_env.py',
24 '../tools/swarm_client/run_isolated.py', 32 '../tools/swarm_client/run_isolated.py',
25 '../tools/swarm_client/run_test_cases.py', 33 '../tools/swarm_client/run_test_cases.py',
26 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', 34 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
27 ], 35 ],
28 'isolate_dependency_untracked': [
29 'data/',
30 'test/data/',
31 ],
32 }, 36 },
33 }], 37 }],
34 ['OS=="mac" or OS=="win"', { 38 ['OS=="mac" or OS=="win"', {
35 'variables': { 39 'variables': {
36 'command': [ 40 'command': [
37 '../testing/test_env.py', 41 '../testing/test_env.py',
38 '../tools/swarm_client/run_test_cases.py', 42 '../tools/swarm_client/run_test_cases.py',
39 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', 43 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
40 ], 44 ],
41 }, 45 },
42 }], 46 }],
43 ['OS=="win"', { 47 ['OS=="win"', {
44 'variables': { 48 'variables': {
45 'isolate_dependency_tracked': [ 49 'isolate_dependency_tracked': [
46 '<(PRODUCT_DIR)/icudt.dll', 50 '<(PRODUCT_DIR)/icudt.dll',
47 ], 51 ],
48 }, 52 },
49 }], 53 }],
50 ], 54 ],
51 } 55 }
OLDNEW
« no previous file with comments | « no previous file | build/android/pylib/gtest/test_runner.py » ('j') | build/android/pylib/gtest/test_runner.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698