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

Side by Side Diff: remoting/remoting.gyp

Issue 7601002: Revert r95841 due to failing media_unittests on linux_shared bot. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « media/video/video_decode_engine.h ('k') | webkit/glue/webkit_glue.gypi » ('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 # TODO(dmaclach): can we pick this up some other way? Right now it's 7 # TODO(dmaclach): can we pick this up some other way? Right now it's
8 # duplicated from chrome.gyp 8 # duplicated from chrome.gyp
9 'chromium_code': 1, 9 'chromium_code': 1,
10 # Use a consistent MIME-type independent of branding. 10 # Use a consistent MIME-type independent of branding.
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 }, 206 },
207 }], 207 }],
208 ], # conditions 208 ], # conditions
209 }], # OS=="mac" 209 }], # OS=="mac"
210 ['OS!="win"', { 210 ['OS!="win"', {
211 'sources!': [ 211 'sources!': [
212 'host/plugin/host_plugin.def', 212 'host/plugin/host_plugin.def',
213 'host/plugin/host_plugin.rc', 213 'host/plugin/host_plugin.rc',
214 ], 214 ],
215 }], 215 }],
216 ['target_arch=="arm"', {
217 'dependencies': [
218 '../third_party/libvpx/libvpx.gyp:libvpx_lib',
219 ],
220 }, {
221 'dependencies': [
222 '../third_party/libvpx/libvpx.gyp:libvpx',
223 ],
224 }],
216 ], 225 ],
217 }, # end of target 'remoting_host_plugin' 226 }, # end of target 'remoting_host_plugin'
218 { 227 {
219 'target_name': 'webapp_it2me', 228 'target_name': 'webapp_it2me',
220 'type': 'none', 229 'type': 'none',
221 'dependencies': [ 230 'dependencies': [
222 'remoting_host_plugin', 231 'remoting_host_plugin',
223 ], 232 ],
224 'sources': [ 233 'sources': [
225 'webapp/build-webapp.py', 234 'webapp/build-webapp.py',
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 'base/task_thread_proxy.cc', 337 'base/task_thread_proxy.cc',
329 'base/task_thread_proxy.h', 338 'base/task_thread_proxy.h',
330 'base/tracer.cc', 339 'base/tracer.cc',
331 'base/tracer.h', 340 'base/tracer.h',
332 'base/types.h', 341 'base/types.h',
333 'base/util.cc', 342 'base/util.cc',
334 'base/util.h', 343 'base/util.h',
335 ], 344 ],
336 'conditions': [ 345 'conditions': [
337 ['target_arch=="arm"', { 346 ['target_arch=="arm"', {
338 'dependencies': [
339 '../third_party/libvpx/libvpx.gyp:libvpx_lib',
340 ],
341 'sources!': [ 347 'sources!': [
342 'base/decoder_vp8.cc', 348 'base/decoder_vp8.cc',
343 'base/decoder_vp8.h', 349 'base/decoder_vp8.h',
344 'base/encoder_vp8.cc', 350 'base/encoder_vp8.cc',
345 'base/encoder_vp8.h', 351 'base/encoder_vp8.h',
346 ], 352 ],
347 }, {
348 'dependencies': [
349 '../third_party/libvpx/libvpx.gyp:libvpx',
350 ],
351 }], 353 }],
352 ], 354 ],
353 }, # end of target 'remoting_base' 355 }, # end of target 'remoting_base'
354 356
355 { 357 {
356 'target_name': 'remoting_host', 358 'target_name': 'remoting_host',
357 'type': 'static_library', 359 'type': 'static_library',
358 'dependencies': [ 360 'dependencies': [
359 'remoting_base', 361 'remoting_base',
360 'remoting_jingle_glue', 362 'remoting_jingle_glue',
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
821 ['target_arch=="arm"', { 823 ['target_arch=="arm"', {
822 'sources!': [ 824 'sources!': [
823 'base/decoder_vp8_unittest.cc', 825 'base/decoder_vp8_unittest.cc',
824 'base/encoder_vp8_unittest.cc', 826 'base/encoder_vp8_unittest.cc',
825 ], 827 ],
826 }], 828 }],
827 ], # end of 'conditions' 829 ], # end of 'conditions'
828 }, # end of target 'remoting_unittests' 830 }, # end of target 'remoting_unittests'
829 ], # end of targets 831 ], # end of targets
830 } 832 }
OLDNEW
« no previous file with comments | « media/video/video_decode_engine.h ('k') | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698