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

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: Generate isolated files Created 7 years, 6 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
« no previous file with comments | « no previous file | build/android/pylib/gtest/test_runner.py » ('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) 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"', {
7 'variables': {
8 'isolate_dependency_tracked': [
9 '<(PRODUCT_DIR)/base_unittests_apk/base_unittests-debug.apk',
frankf 2013/06/21 20:38:19 It doesn't make much sense to list the apk here: c
10 ],
11 },
12 }],
13 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
14 'variables': {
15 'isolate_dependency_untracked': [
16 'data/',
17 'test/data/',
18 ],
19 },
20 }],
6 ['OS=="linux"', { 21 ['OS=="linux"', {
7 'variables': { 22 'variables': {
8 'command': [ 23 'command': [
9 '../testing/xvfb.py', 24 '../testing/xvfb.py',
10 '<(PRODUCT_DIR)', 25 '<(PRODUCT_DIR)',
11 '../tools/swarm_client/run_test_cases.py', 26 '../tools/swarm_client/run_test_cases.py',
12 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', 27 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
13 ], 28 ],
14 'isolate_dependency_tracked': [ 29 'isolate_dependency_tracked': [
15 '../testing/xvfb.py', 30 '../testing/xvfb.py',
16 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', 31 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
17 ], 32 ],
18 }, 33 },
19 }], 34 }],
20 ['OS=="linux" or OS=="mac" or OS=="win"', { 35 ['OS=="linux" or OS=="mac" or OS=="win"', {
21 'variables': { 36 'variables': {
22 'isolate_dependency_tracked': [ 37 'isolate_dependency_tracked': [
23 '../testing/test_env.py', 38 '../testing/test_env.py',
24 '../tools/swarm_client/run_isolated.py', 39 '../tools/swarm_client/run_isolated.py',
25 '../tools/swarm_client/run_test_cases.py', 40 '../tools/swarm_client/run_test_cases.py',
26 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', 41 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
27 ], 42 ],
28 'isolate_dependency_untracked': [
29 'data/',
30 'test/data/',
31 ],
32 }, 43 },
33 }], 44 }],
34 ['OS=="mac" or OS=="win"', { 45 ['OS=="mac" or OS=="win"', {
35 'variables': { 46 'variables': {
36 'command': [ 47 'command': [
37 '../testing/test_env.py', 48 '../testing/test_env.py',
38 '../tools/swarm_client/run_test_cases.py', 49 '../tools/swarm_client/run_test_cases.py',
39 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', 50 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
40 ], 51 ],
41 }, 52 },
42 }], 53 }],
43 ['OS=="win"', { 54 ['OS=="win"', {
44 'variables': { 55 'variables': {
45 'isolate_dependency_tracked': [ 56 'isolate_dependency_tracked': [
46 '<(PRODUCT_DIR)/icudt.dll', 57 '<(PRODUCT_DIR)/icudt.dll',
47 ], 58 ],
48 }, 59 },
49 }], 60 }],
50 ], 61 ],
51 } 62 }
OLDNEW
« no previous file with comments | « no previous file | build/android/pylib/gtest/test_runner.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698