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

Side by Side Diff: build/isolate.gypi

Issue 1709503002: [Swarming] Isolate gcmole. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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
OLDNEW
1 # Copyright 2015 the V8 project authors. All rights reserved. 1 # Copyright 2015 the V8 project authors. All rights reserved.
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # This file is meant to be included into a target to provide a rule 6 # This file is meant to be included into a target to provide a rule
7 # to "build" .isolate files into a .isolated file. 7 # to "build" .isolate files into a .isolated file.
8 # 8 #
9 # To use this, create a gyp target with the following form: 9 # To use this, create a gyp target with the following form:
10 # 'conditions': [ 10 # 'conditions': [
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 # Path variables are used to replace file paths when loading a .isolate 65 # Path variables are used to replace file paths when loading a .isolate
66 # file 66 # file
67 '--path-variable', 'DEPTH', '<(DEPTH)', 67 '--path-variable', 'DEPTH', '<(DEPTH)',
68 '--path-variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)', 68 '--path-variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
69 69
70 '--config-variable', 'CONFIGURATION_NAME=<(CONFIGURATION_NAME)', 70 '--config-variable', 'CONFIGURATION_NAME=<(CONFIGURATION_NAME)',
71 '--config-variable', 'OS=<(OS)', 71 '--config-variable', 'OS=<(OS)',
72 '--config-variable', 'asan=<(asan)', 72 '--config-variable', 'asan=<(asan)',
73 '--config-variable', 'cfi_vptr=<(cfi_vptr)', 73 '--config-variable', 'cfi_vptr=<(cfi_vptr)',
74 '--config-variable', 'gcmole=<(gcmole)',
74 '--config-variable', 'has_valgrind=<(has_valgrind)', 75 '--config-variable', 'has_valgrind=<(has_valgrind)',
75 '--config-variable', 'icu_use_data_file_flag=0', 76 '--config-variable', 'icu_use_data_file_flag=0',
76 '--config-variable', 'msan=<(msan)', 77 '--config-variable', 'msan=<(msan)',
77 '--config-variable', 'tsan=<(tsan)', 78 '--config-variable', 'tsan=<(tsan)',
78 '--config-variable', 'component=<(component)', 79 '--config-variable', 'component=<(component)',
79 '--config-variable', 'target_arch=<(target_arch)', 80 '--config-variable', 'target_arch=<(target_arch)',
80 '--config-variable', 'use_custom_libcxx=<(use_custom_libcxx)', 81 '--config-variable', 'use_custom_libcxx=<(use_custom_libcxx)',
81 '--config-variable', 'v8_separate_ignition_snapshot=<(v8_separate_igniti on_snapshot)', 82 '--config-variable', 'v8_separate_ignition_snapshot=<(v8_separate_igniti on_snapshot)',
82 '--config-variable', 'v8_use_external_startup_data=<(v8_use_external_sta rtup_data)', 83 '--config-variable', 'v8_use_external_startup_data=<(v8_use_external_sta rtup_data)',
83 '--config-variable', 'v8_use_snapshot=<(v8_use_snapshot)', 84 '--config-variable', 'v8_use_snapshot=<(v8_use_snapshot)',
84 ], 85 ],
85 'conditions': [ 86 'conditions': [
86 ['OS=="win"', { 87 ['OS=="win"', {
87 'action': [ 88 'action': [
88 '--config-variable', 'msvs_version=2013', 89 '--config-variable', 'msvs_version=2013',
89 ], 90 ],
90 }, { 91 }, {
91 'action': [ 92 'action': [
92 '--config-variable', 'msvs_version=0', 93 '--config-variable', 'msvs_version=0',
93 ], 94 ],
94 }], 95 }],
95 ], 96 ],
96 }, 97 },
97 ], 98 ],
98 } 99 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | build/standalone.gypi » ('j') | build/standalone.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698