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

Side by Side Diff: media/cast/cast.gyp

Issue 148643002: Hide X11 dependencies when use_x11=0. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review Fix: remove blank lines Created 6 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 | « gpu/tools/tools.gyp ('k') | tools/android/forwarder2/forwarder.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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'include_tests%': 1, 7 'include_tests%': 1,
8 'chromium_code': 1, 8 'chromium_code': 1,
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 '<(DEPTH)/media/media.gyp:media', 177 '<(DEPTH)/media/media.gyp:media',
178 '<(DEPTH)/testing/gtest.gyp:gtest', 178 '<(DEPTH)/testing/gtest.gyp:gtest',
179 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport', 179 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport',
180 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility', 180 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility',
181 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', 181 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',
182 ], 182 ],
183 'sources': [ 183 'sources': [
184 '<(DEPTH)/media/cast/test/receiver.cc', 184 '<(DEPTH)/media/cast/test/receiver.cc',
185 ], 185 ],
186 'conditions': [ 186 'conditions': [
187 ['OS == "linux"', { 187 ['OS == "linux" and use_x11==1', {
188 'dependencies': [ 188 'dependencies': [
189 '<(DEPTH)/build/linux/system.gyp:x11', 189 '<(DEPTH)/build/linux/system.gyp:x11',
190 '<(DEPTH)/build/linux/system.gyp:xext', 190 '<(DEPTH)/build/linux/system.gyp:xext',
191 ], 191 ],
192 'sources': [ 192 'sources': [
193 '<(DEPTH)/media/cast/test/linux_output_window.cc', 193 '<(DEPTH)/media/cast/test/linux_output_window.cc',
194 '<(DEPTH)/media/cast/test/linux_output_window.h', 194 '<(DEPTH)/media/cast/test/linux_output_window.h',
195 ], 195 ],
196 }], 196 }],
197 ], 197 ],
198 }, 198 },
199 ], # targets 199 ], # targets
200 }], # include_tests 200 }], # include_tests
201 ], 201 ],
202 } 202 }
OLDNEW
« no previous file with comments | « gpu/tools/tools.gyp ('k') | tools/android/forwarder2/forwarder.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698