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

Side by Side Diff: build/isolate.gypi

Issue 29993003: Use swarming_client instead of swarm_client. (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Rebased Created 7 years, 1 month 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
« no previous file with comments | « build/common.gypi ('k') | chrome/browser_tests.isolate » ('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 # This file is meant to be included into a target to provide a rule 5 # This file is meant to be included into a target to provide a rule
6 # to "build" .isolate files into a .isolated file. 6 # to "build" .isolate files into a .isolated file.
7 # 7 #
8 # To use this, create a gyp target with the following form: 8 # To use this, create a gyp target with the following form:
9 # 'conditions': [ 9 # 'conditions': [
10 # ['test_isolation_mode != "noop"', { 10 # ['test_isolation_mode != "noop"', {
(...skipping 23 matching lines...) Expand all
34 # The generated .isolated file will be: 34 # The generated .isolated file will be:
35 # <(PRODUCT_DIR)/foo_test.isolated 35 # <(PRODUCT_DIR)/foo_test.isolated
36 36
37 { 37 {
38 'rules': [ 38 'rules': [
39 { 39 {
40 'rule_name': 'isolate', 40 'rule_name': 'isolate',
41 'extension': 'isolate', 41 'extension': 'isolate',
42 'inputs': [ 42 'inputs': [
43 # Files that are known to be involved in this step. 43 # Files that are known to be involved in this step.
44 '<(DEPTH)/tools/swarm_client/isolate.py', 44 '<(DEPTH)/tools/swarming_client/isolate.py',
45 '<(DEPTH)/tools/swarm_client/run_isolated.py', 45 '<(DEPTH)/tools/swarming_client/run_isolated.py',
46 '<(DEPTH)/tools/swarm_client/googletest/run_test_cases.py', 46 '<(DEPTH)/tools/swarming_client/googletest/run_test_cases.py',
47 47
48 # Disable file tracking by the build driver for now. This means the 48 # Disable file tracking by the build driver for now. This means the
49 # project must have the proper build-time dependency for their runtime 49 # project must have the proper build-time dependency for their runtime
50 # dependency. This improves the runtime of the build driver since it 50 # dependency. This improves the runtime of the build driver since it
51 # doesn't have to stat() all these files. 51 # doesn't have to stat() all these files.
52 # 52 #
53 # More importantly, it means that even if a isolate_dependency_tracked 53 # More importantly, it means that even if a isolate_dependency_tracked
54 # file is missing, for example if a file was deleted and the .isolate 54 # file is missing, for example if a file was deleted and the .isolate
55 # file was not updated, that won't break the build, especially in the 55 # file was not updated, that won't break the build, especially in the
56 # case where foo_tests_run is not built! This should be reenabled once 56 # case where foo_tests_run is not built! This should be reenabled once
57 # the switch-over to running tests on Swarm is completed. 57 # the switch-over to running tests on Swarm is completed.
58 #'<@(isolate_dependency_tracked)', 58 #'<@(isolate_dependency_tracked)',
59 ], 59 ],
60 'outputs': [ 60 'outputs': [
61 '<(PRODUCT_DIR)/<(RULE_INPUT_ROOT).isolated', 61 '<(PRODUCT_DIR)/<(RULE_INPUT_ROOT).isolated',
62 ], 62 ],
63 'conditions': [ 63 'conditions': [
64 ["test_isolation_outdir==''", { 64 ["test_isolation_outdir==''", {
65 'action': [ 65 'action': [
66 'python', 66 'python',
67 '<(DEPTH)/tools/swarm_client/isolate.py', 67 '<(DEPTH)/tools/swarming_client/isolate.py',
68 '<(test_isolation_mode)', 68 '<(test_isolation_mode)',
69 # GYP will eliminate duplicate arguments so '<(PRODUCT_DIR)' cannot 69 # GYP will eliminate duplicate arguments so '<(PRODUCT_DIR)' cannot
70 # be provided twice. To work around this behavior, append '/'. 70 # be provided twice. To work around this behavior, append '/'.
71 # 71 #
72 # Also have a space after <(PRODUCT_DIR) or visual studio will 72 # Also have a space after <(PRODUCT_DIR) or visual studio will
73 # escape the argument wrappping " with the \ and merge it into 73 # escape the argument wrappping " with the \ and merge it into
74 # the following arguments. 74 # the following arguments.
75 # 75 #
76 # Other variables should use the -V FOO=<(FOO) form so frequent 76 # Other variables should use the -V FOO=<(FOO) form so frequent
77 # values, like '0' or '1', aren't stripped out by GYP. 77 # values, like '0' or '1', aren't stripped out by GYP.
78 '--outdir', '<(PRODUCT_DIR)/ ', 78 '--outdir', '<(PRODUCT_DIR)/ ',
79 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR) ', 79 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR) ',
80 '--variable', 'OS=<(OS)', 80 '--variable', 'OS=<(OS)',
81 '--result', '<@(_outputs)', 81 '--result', '<@(_outputs)',
82 '--isolate', '<(RULE_INPUT_PATH)', 82 '--isolate', '<(RULE_INPUT_PATH)',
83 ], 83 ],
84 }, { 84 }, {
85 'action': [ 85 'action': [
86 'python', 86 'python',
87 '<(DEPTH)/tools/swarm_client/isolate.py', 87 '<(DEPTH)/tools/swarming_client/isolate.py',
88 '<(test_isolation_mode)', 88 '<(test_isolation_mode)',
89 '--outdir', '<(test_isolation_outdir)', 89 '--outdir', '<(test_isolation_outdir)',
90 # See comment above. 90 # See comment above.
91 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR) ', 91 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR) ',
92 '--variable', 'OS=<(OS)', 92 '--variable', 'OS=<(OS)',
93 '--result', '<@(_outputs)', 93 '--result', '<@(_outputs)',
94 '--isolate', '<(RULE_INPUT_PATH)', 94 '--isolate', '<(RULE_INPUT_PATH)',
95 ], 95 ],
96 }], 96 }],
97 ['test_isolation_fail_on_missing == 0', { 97 ['test_isolation_fail_on_missing == 0', {
98 'action': ['--ignore_broken_items'], 98 'action': ['--ignore_broken_items'],
99 }, 99 },
100 ], 100 ],
101 ], 101 ],
102 102
103 'msvs_cygwin_shell': 0, 103 'msvs_cygwin_shell': 0,
104 }, 104 },
105 ], 105 ],
106 } 106 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/browser_tests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698