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

Side by Side Diff: chrome/sync_integration_tests.isolate

Issue 415273003: Fix sync_integration_tests.isolate on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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=="linux"', { 6 ['OS=="linux"', {
7 'variables': { 7 'variables': {
8 'command': [ 8 'command': [
9 '../testing/xvfb.py', 9 '../testing/xvfb.py',
10 '<(PRODUCT_DIR)', 10 '<(PRODUCT_DIR)',
(...skipping 27 matching lines...) Expand all
38 '../chrome/test/data/sync/', 38 '../chrome/test/data/sync/',
39 '../net/tools/testserver/', 39 '../net/tools/testserver/',
40 '../sync/tools/testserver/', 40 '../sync/tools/testserver/',
41 '../third_party/tlslite/', 41 '../third_party/tlslite/',
42 '../third_party/pyftpdlib/', 42 '../third_party/pyftpdlib/',
43 '../third_party/pywebsocket/', 43 '../third_party/pywebsocket/',
44 '<(PRODUCT_DIR)/pyproto/', 44 '<(PRODUCT_DIR)/pyproto/',
45 ], 45 ],
46 }, 46 },
47 }], 47 }],
48 ['OS=="mac" or OS=="win"', {
49 'variables': {
50 'command': [
51 '<(PRODUCT_DIR)/sync_integration_tests<(EXECUTABLE_SUFFIX)',
52 '--test-launcher-bot-mode',
53 ],
54 },
55 }],
48 ['OS=="mac"', { 56 ['OS=="mac"', {
49 'variables': { 57 'variables': {
50 'command': [
51 '<(PRODUCT_DIR)/sync_integration_tests<(EXECUTABLE_SUFFIX)',
52 '--test-launcher-bot-mode',
53 ],
54 'isolate_dependency_tracked': [ 58 'isolate_dependency_tracked': [
55 '<(PRODUCT_DIR)/ffmpegsumo.so', 59 '<(PRODUCT_DIR)/ffmpegsumo.so',
56 ], 60 ],
57 'isolate_dependency_untracked': [ 61 'isolate_dependency_untracked': [
58 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', 62 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
59 '<(PRODUCT_DIR)/<(mac_product_name).app/', 63 '<(PRODUCT_DIR)/<(mac_product_name).app/',
60 ], 64 ],
61 }, 65 },
62 }], 66 }],
63 ['OS=="win"', { 67 ['OS=="win"', {
64 'variables': { 68 'variables': {
65 'isolate_dependency_tracked': [ 69 'isolate_dependency_tracked': [
66 '<(PRODUCT_DIR)/chrome_elf.dll', 70 '<(PRODUCT_DIR)/chrome_elf.dll',
67 '<(PRODUCT_DIR)/ffmpegsumo.dll', 71 '<(PRODUCT_DIR)/ffmpegsumo.dll',
68 ], 72 ],
69 }, 73 },
70 }], 74 }],
71 ], 75 ],
72 'includes': [ 76 'includes': [
73 '../third_party/icu/icu.isolate', 77 '../third_party/icu/icu.isolate',
74 ], 78 ],
75 } 79 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698