Separate Simple Backend creation from initialization.
[chromium-blink-merge.git] / build / isolate.gypi
blobb4201cbdb9dea69dd74b2a6aa065b25dc3d2581f
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.
5 # This file is meant to be included into a target to provide a rule
6 # to "build" .isolate files into a .isolated file.
8 # To use this, create a gyp target with the following form:
9 # 'conditions': [
10 #   ['test_isolation_mode != "noop"', {
11 #     'targets': [
12 #       {
13 #         'target_name': 'foo_test_run',
14 #         'type': 'none',
15 #         'dependencies': [
16 #           'foo_test',
17 #         ],
18 #         'includes': [
19 #           '../build/isolate.gypi',
20 #           'foo_test.isolate',
21 #         ],
22 #         'sources': [
23 #           'foo_test.isolate',
24 #         ],
25 #       },
26 #     ],
27 #   }],
28 # ],
30 # Note: foo_test.isolate is included and a source file. It is an inherent
31 # property of the .isolate format. This permits to define GYP variables but is
32 # a stricter format than GYP so isolate.py can read it.
34 # The generated .isolated file will be:
35 #   <(PRODUCT_DIR)/foo_test.isolated
38   'rules': [
39     {
40       'rule_name': 'isolate',
41       'extension': 'isolate',
42       'inputs': [
43         # Disable file tracking by the build driver for now. This means the
44         # project must have the proper build-time dependency for their runtime
45         # dependency. This improves the runtime of the build driver since it
46         # doesn't have to stat() all these files.
47         #
48         # More importantly, it means that even if a isolate_dependency_tracked
49         # file is missing, for example if a file was deleted and the .isolate
50         # file was not updated, that won't break the build, especially in the
51         # case where foo_tests_run is not built! This should be reenabled once
52         # the switch-over to running tests on Swarm is completed.
53         #'<@(isolate_dependency_tracked)',
54       ],
55       'outputs': [
56         '<(PRODUCT_DIR)/<(RULE_INPUT_ROOT).isolated',
57       ],
58       'conditions': [
59         ["test_isolation_outdir==''", {
60           'action': [
61             'python',
62             '<(DEPTH)/tools/swarm_client/isolate.py',
63             '<(test_isolation_mode)',
64             # GYP will eliminate duplicate arguments so '<(PRODUCT_DIR)' cannot
65             # be provided twice. To work around this behavior, append '/'.
66             # Also have a space after <(PRODUCT_DIR) or visual studio will
67             # escape the argument wrappping " with the \ and merge it into
68             # the following arguments.
69             '--outdir', '<(PRODUCT_DIR)/ ',
70             '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR) ',
71             '--variable', 'OS', '<(OS)',
72             '--result', '<@(_outputs)',
73             '--isolate', '<(RULE_INPUT_PATH)',
74           ],
75         }, {
76           'action': [
77             'python',
78             '<(DEPTH)/tools/swarm_client/isolate.py',
79             '<(test_isolation_mode)',
80             '--outdir', '<(test_isolation_outdir)',
81             # Have a space after <(PRODUCT_DIR) or visual studio will
82             # escape the argument wrappping " with the \ and merge it into
83             # the following arguments.
84             '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR) ',
85             '--variable', 'OS', '<(OS)',
86             '--result', '<@(_outputs)',
87             '--isolate', '<(RULE_INPUT_PATH)',
88           ],
89         }],
90         ['test_isolation_fail_on_missing == 0', {
91             'action': ['--ignore_broken_items'],
92           },
93         ],
94       ],
96       'msvs_cygwin_shell': 0,
97     },
98   ],