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

Side by Side Diff: ui/gfx/compositor/compositor.gyp

Issue 8591029: allocator.gyp target needs to be conditionally included in compositor.gyp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'sources/': [ 10 'sources/': [
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 'type': 'static_library', 112 'type': 'static_library',
113 'dependencies': [ 113 'dependencies': [
114 '<(DEPTH)/base/base.gyp:base', 114 '<(DEPTH)/base/base.gyp:base',
115 ], 115 ],
116 'sources': [ 116 'sources': [
117 'compositor_test_support.cc', 117 'compositor_test_support.cc',
118 'compositor_test_support.h', 118 'compositor_test_support.h',
119 ], 119 ],
120 'conditions': [ 120 'conditions': [
121 ['use_webkit_compositor == 1', { 121 ['use_webkit_compositor == 1', {
122 'dependencies': [ 122 'dependencies': [
oshima 2011/11/17 22:22:31 can you fix indent here?
dhollowa 2011/11/17 22:28:23 Done.
123 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
124 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_support', 123 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_support',
125 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:web kit', 124 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:web kit',
126 ], 125 ],
127 }], 126 }],
127 ['os_posix == 1 and OS != "mac"', {
oshima 2011/11/17 22:22:31 It's a bit strange to be nested (could have just b
dhollowa 2011/11/17 22:28:23 Yes. I followed the pattern.
128 'conditions': [
129 ['linux_use_tcmalloc==1', {
130 'dependencies': [
131 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
132 ],
133 }],
134 ],
135 }],
128 ], 136 ],
129 }, 137 },
130 { 138 {
131 'target_name': 'compositor_unittests', 139 'target_name': 'compositor_unittests',
132 'type': 'executable', 140 'type': 'executable',
133 'dependencies': [ 141 'dependencies': [
134 '<(DEPTH)/base/base.gyp:base', 142 '<(DEPTH)/base/base.gyp:base',
135 '<(DEPTH)/base/base.gyp:test_support_base', 143 '<(DEPTH)/base/base.gyp:test_support_base',
136 '<(DEPTH)/chrome/chrome_resources.gyp:packed_resources', 144 '<(DEPTH)/chrome/chrome_resources.gyp:packed_resources',
137 '<(DEPTH)/skia/skia.gyp:skia', 145 '<(DEPTH)/skia/skia.gyp:skia',
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 'test_compositor.cc', 203 'test_compositor.cc',
196 'test_compositor.h', 204 'test_compositor.h',
197 'test_texture.cc', 205 'test_texture.cc',
198 'test_texture.h', 206 'test_texture.h',
199 ], 207 ],
200 }], 208 }],
201 ], 209 ],
202 }, 210 },
203 ], 211 ],
204 } 212 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698