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

Side by Side Diff: courgette/courgette.gyp

Issue 1647453002: allocator cleanup: remove dependencies on allocator from all targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pure rebase 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
« no previous file with comments | « courgette/BUILD.gn ('k') | crypto/crypto.gyp » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'courgette_lib_sources': [ 8 'courgette_lib_sources': [
9 'adjustment_method.cc', 9 'adjustment_method.cc',
10 'adjustment_method_2.cc', 10 'adjustment_method_2.cc',
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 'third_party/qsufsort_unittest.cc', 124 'third_party/qsufsort_unittest.cc',
125 ], 125 ],
126 'dependencies': [ 126 'dependencies': [
127 'courgette_lib', 127 'courgette_lib',
128 '../base/base.gyp:base', 128 '../base/base.gyp:base',
129 '../base/base.gyp:base_i18n', 129 '../base/base.gyp:base_i18n',
130 '../base/base.gyp:run_all_unittests', 130 '../base/base.gyp:run_all_unittests',
131 '../base/base.gyp:test_support_base', 131 '../base/base.gyp:test_support_base',
132 '../testing/gtest.gyp:gtest', 132 '../testing/gtest.gyp:gtest',
133 ], 133 ],
134 'conditions': [
135 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
136 'conditions': [
137 ['use_allocator!="none"', {
138 'dependencies': [
139 '../base/allocator/allocator.gyp:allocator',
140 ],
141 }],
142 ],
143 }],
144 ],
145 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 134 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
146 'msvs_disabled_warnings': [4267, ], 135 'msvs_disabled_warnings': [4267, ],
147 }, 136 },
148 { 137 {
149 'target_name': 'courgette_fuzz', 138 'target_name': 'courgette_fuzz',
150 'type': 'executable', 139 'type': 'executable',
151 'sources': [ 140 'sources': [
152 'base_test_unittest.cc', 141 'base_test_unittest.cc',
153 'base_test_unittest.h', 142 'base_test_unittest.h',
154 'encoded_program_fuzz_unittest.cc', 143 'encoded_program_fuzz_unittest.cc',
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 '../build/isolate.gypi', 227 '../build/isolate.gypi',
239 ], 228 ],
240 'sources': [ 229 'sources': [
241 'courgette_unittests.isolate', 230 'courgette_unittests.isolate',
242 ], 231 ],
243 }, 232 },
244 ], 233 ],
245 }], 234 }],
246 ], 235 ],
247 } 236 }
OLDNEW
« no previous file with comments | « courgette/BUILD.gn ('k') | crypto/crypto.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698