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

Side by Side Diff: base/base_unittests.isolate

Issue 10019014: Convert isolate.py to exclusively use .isolate files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Do not read as binary Created 8 years, 8 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 | « base/base.gyp ('k') | net/net.gyp » ('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 (c) 2012 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 'variables': {
6 'isolate_dependency_tracked': [
7 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
8 '../testing/test_env.py',
9 'data/json/bom_feff.json',
10 ],
11 'isolate_dependency_untracked': [
12 'data/file_util_unittest/',
13 ],
14 },
15 'conditions': [
16 ['OS=="linux"', {
17 'variables': {
18 'isolate_dependency_tracked': [
19 '../testing/xvfb.py',
20 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
21 ],
22 'command': [
23 '../testing/xvfb.py',
24 '<(PRODUCT_DIR)',
25 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
26 ],
27 },
28 }, { # else
29 'variables': {
30 'command': [
31 '../testing/test_env.py',
32 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
33 ],
34 },
35 }],
36 ['OS=="win"', {
37 'variables': {
38 'isolate_dependency_tracked': [
39 'data/file_version_info_unittest/FileVersionInfoTest1.dll',
40 'data/file_version_info_unittest/FileVersionInfoTest2.dll',
41 ],
42 },
43 }],
44 ],
45 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698