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

Side by Side Diff: mojo/mojo_apps_js_unittests.isolate

Issue 198193007: Isolated tests: mojo_js_unittests and mojo_apps_js_unittests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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
(Empty)
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
viettrungluu 2014/03/15 17:14:51 Nit: The current copyright message doesn't have th
yzshen1 2014/03/16 16:52:16 Done.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 {
5 'includes': [
6 '../third_party/icu/icu.isolate',
7 ],
8 'conditions': [
9 ['OS=="linux"', {
10 'variables': {
11 'command': [
12 '../testing/xvfb.py',
13 '<(PRODUCT_DIR)',
14 '<(PRODUCT_DIR)/mojo_apps_js_unittests<(EXECUTABLE_SUFFIX)',
15 '--brave-new-test-launcher',
16 '--test-launcher-bot-mode',
17 ],
18 },
19 }],
20 ['OS=="mac" or OS=="win"', {
21 'variables': {
22 'command': [
23 '../testing/test_env.py',
24 '<(PRODUCT_DIR)/mojo_apps_js_unittests<(EXECUTABLE_SUFFIX)',
25 '--brave-new-test-launcher',
26 '--test-launcher-bot-mode',
27 ],
28 'isolate_dependency_tracked': [
29 '../testing/test_env.py',
30 ],
31 },
32 }],
33 ['OS=="win" or OS=="mac" or OS=="linux"', {
34 'variables': {
35 'isolate_dependency_tracked': [
36 '../gin/test/expect.js',
37 '<(PRODUCT_DIR)/mojo_apps_js_unittests<(EXECUTABLE_SUFFIX)',
38 ],
39 'isolate_dependency_untracked': [
40 '<(PRODUCT_DIR)/gen/mojo/public/bindings/tests/',
41 'apps/js/',
42 'bindings/js/',
43 'public/bindings/js/',
44 ],
45 },
46 }],
47 ['OS=="win"', {
48 'variables': {
49 'isolate_dependency_tracked': [
50 '<(PRODUCT_DIR)/mojo_system.dll',
51 '<(PRODUCT_DIR)/mojo_test_support.dll',
52 ],
53 },
54 }],
55 ['OS=="win" and component=="shared_library"', {
56 'variables': {
57 'isolate_dependency_tracked': [
58 '<(PRODUCT_DIR)/base.dll',
59 '<(PRODUCT_DIR)/base_i18n.dll',
60 '<(PRODUCT_DIR)/gin.dll',
61 '<(PRODUCT_DIR)/mojo_system_impl.dll',
62 '<(PRODUCT_DIR)/msvcp120d.dll',
63 '<(PRODUCT_DIR)/msvcr120d.dll',
64 '<(PRODUCT_DIR)/v8.dll',
65 ],
66 },
67 }],
68 ],
69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698