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

Side by Side Diff: media/cast/cast_testing_tools.gypi

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 | « media/BUILD.gn ('k') | media/media.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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'conditions': [ 6 'conditions': [
7 ['OS=="win" or OS=="mac" or OS=="linux"', { 7 ['OS=="win" or OS=="mac" or OS=="linux"', {
8 'targets': [ 8 'targets': [
9 { 9 {
10 # This is a target for the collection of cast development tools. They 10 # This is a target for the collection of cast development tools. They
(...skipping 19 matching lines...) Expand all
30 'cast_net', 30 'cast_net',
31 'cast_receiver', 31 'cast_receiver',
32 'cast_sender', 32 'cast_sender',
33 'cast_test_utility', 33 'cast_test_utility',
34 '<(DEPTH)/net/net.gyp:net', 34 '<(DEPTH)/net/net.gyp:net',
35 '<(DEPTH)/testing/gtest.gyp:gtest', 35 '<(DEPTH)/testing/gtest.gyp:gtest',
36 ], 36 ],
37 'sources': [ 37 'sources': [
38 'test/cast_benchmarks.cc', 38 'test/cast_benchmarks.cc',
39 ], # source 39 ], # source
40 'conditions': [
41 ['os_posix==1 and OS!="mac" and OS!="ios" and use_allocator!="none"' ,
42 {
43 'dependencies': [
44 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
45 ],
46 }
47 ],
48 ],
49 }, 40 },
50 { 41 {
51 # GN version: //media/cast:cast_receiver_app 42 # GN version: //media/cast:cast_receiver_app
52 'target_name': 'cast_receiver_app', 43 'target_name': 'cast_receiver_app',
53 'type': 'executable', 44 'type': 'executable',
54 'include_dirs': [ 45 'include_dirs': [
55 '<(DEPTH)/', 46 '<(DEPTH)/',
56 ], 47 ],
57 'dependencies': [ 48 'dependencies': [
58 'cast_common', 49 'cast_common',
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 '<(DEPTH)/media/media.gyp:media', 193 '<(DEPTH)/media/media.gyp:media',
203 ], 194 ],
204 'sources': [ 195 'sources': [
205 'test/utility/tap_proxy.cc', 196 'test/utility/tap_proxy.cc',
206 ], 197 ],
207 } 198 }
208 ] 199 ]
209 }], 200 }],
210 ], # conditions 201 ], # conditions
211 } 202 }
OLDNEW
« no previous file with comments | « media/BUILD.gn ('k') | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698